Correct javadoc

Change-Id: Idf2b88f697f7077a57f7162e0a790c4a4872ae21
diff --git a/core/api/src/main/java/org/onosproject/net/flow/TrafficTreatment.java b/core/api/src/main/java/org/onosproject/net/flow/TrafficTreatment.java
index 154f8c6..50c3018 100644
--- a/core/api/src/main/java/org/onosproject/net/flow/TrafficTreatment.java
+++ b/core/api/src/main/java/org/onosproject/net/flow/TrafficTreatment.java
@@ -43,6 +43,7 @@
     /**
      * Returns the list of treatment instructions that will be applied
      * further down the pipeline.
+     *
      * @return list of treatment instructions
      */
     List<Instruction> deferred();
@@ -50,6 +51,7 @@
     /**
      * Returns the list of treatment instructions that will be applied
      * immediately.
+     *
      * @return list of treatment instructions
      */
     List<Instruction> immediate();
@@ -64,6 +66,7 @@
 
     /**
      * Returns the next table in the pipeline.
+     *
      * @return a table transition; may be null.
      */
     Instructions.TableTypeTransition tableTransition();
@@ -71,6 +74,7 @@
     /**
      * Whether the deferred treatment instructions will be cleared
      * by the device.
+     *
      * @return a boolean
      */
     boolean clearedDeferred();
@@ -84,6 +88,7 @@
 
     /**
      * Returns the stat trigger instruction if there is one.
+     *
      * @return a stat trigger instruction; may be null.
      */
     Instructions.StatTriggerInstruction statTrigger();
@@ -316,13 +321,15 @@
         Builder pushVlan(EthType ethType);
 
         /**
-         * Any instructions preceded by this method call will be deferred.
+         * Any instructions followed by this method call will be deferred.
+         *
          * @return a treatment builder
          */
         Builder deferred();
 
         /**
-         * Any instructions preceded by this method call will be immediate.
+         * Any instructions followed by this method call will be immediate.
+         *
          * @return a treatment builder
          */
         Builder immediate();
@@ -330,12 +337,14 @@
 
         /**
          * Instructs the device to clear the deferred instructions set.
+         *
          * @return a treatment builder
          */
         Builder wipeDeferred();
 
         /**
          * the instruction to clear not wipe the deferred instructions set.
+         *
          * @return a treatment builder
          */
         Builder notWipeDeferred();