Fixup ConstraintMetadataDefinition javadocs 70/26570/2
authorRobert Varga <rovarga@cisco.com>
Sun, 6 Sep 2015 08:37:36 +0000 (10:37 +0200)
committerGerrit Code Review <gerrit@opendaylight.org>
Mon, 7 Sep 2015 08:15:16 +0000 (08:15 +0000)
Simple typo and missing empy lines.

Change-Id: I0a5c012f08b22dca0412abddbd319803e2657b0c
Signed-off-by: Robert Varga <rovarga@cisco.com>
yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/ConstraintMetaDefinition.java

index ea2f7d3e68c601cdd1b2e37073b7737a4b13f3a0..7b5f3e43c46ed4606a22f993027c89fef25b63bd 100644 (file)
@@ -8,16 +8,16 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 /**
- * Contains methods which retrive values for description, error message, error
+ * Contains methods which retrieve values for description, error message, error
  * app tag and reference (to other document).
- * 
+ *
  */
 public interface ConstraintMetaDefinition {
 
     /**
      * Returns the value of the argument of YANG <code>description</code>
      * keyword.
-     * 
+     *
      * @return string with the description
      */
     String getDescription();
@@ -25,7 +25,7 @@ public interface ConstraintMetaDefinition {
     /**
      * Returns the value of the argument of YANG <code>error-app-tag</code>
      * keyword.
-     * 
+     *
      * @return string with the application tag
      */
     String getErrorAppTag();
@@ -33,14 +33,14 @@ public interface ConstraintMetaDefinition {
     /**
      * Returns the value of the argument of YANG <code>error-message</code>
      * keyword.
-     * 
+     *
      * @return string with the error message
      */
     String getErrorMessage();
 
     /**
      * Returns the value of the argument of YANG <code>reference</code> keyword.
-     * 
+     *
      * @return string with reference to some other document
      */
     String getReference();