Fix Javadoc typos

Change-Id: Ieaf96e9e4bb217b1def0edb080cf4ea6af533b10
diff --git a/core/api/src/test/java/org/onlab/onos/net/flow/DefaultTrafficSelectorTest.java b/core/api/src/test/java/org/onlab/onos/net/flow/DefaultTrafficSelectorTest.java
index b3e2acf..527030f 100644
--- a/core/api/src/test/java/org/onlab/onos/net/flow/DefaultTrafficSelectorTest.java
+++ b/core/api/src/test/java/org/onlab/onos/net/flow/DefaultTrafficSelectorTest.java
@@ -72,13 +72,18 @@
     }
 
     /**
-     * Hamcrest matcher to check that a collection of Intents contains an
-     * Intent with the specified Intent Id.
+     * Hamcrest matcher to check that a selector contains a
+     * Criterion with the specified type.
      */
     public static final class CriterionExistsMatcher
            extends TypeSafeMatcher<TrafficSelector> {
         private final Criterion.Type type;
 
+        /**
+         * Constructs a matcher for the given criterion type.
+         *
+         * @param typeValue criterion type to match
+         */
         public CriterionExistsMatcher(Criterion.Type typeValue) {
             type = typeValue;
         }
@@ -102,7 +107,7 @@
 
 
     /**
-     * Factory method to create a criterion type matcher.  Returns a matcher
+     * Creates a criterion type matcher.  Returns a matcher
      * for a criterion with the given type.
      *
      * @param type type of Criterion to match