Finishing the sentence in the Javadoc MutableArrays
authorJaroslav Tulach <jtulach@netbeans.org>
Tue, 26 Aug 2014 17:35:37 +0200
branchMutableArrays
changeset 831e37388a5f7d1
parent 830 861f15abe944
child 832 60ba914d805c
Finishing the sentence in the Javadoc
json/src/main/java/net/java/html/json/Property.java
     1.1 --- a/json/src/main/java/net/java/html/json/Property.java	Tue Aug 26 17:35:10 2014 +0200
     1.2 +++ b/json/src/main/java/net/java/html/json/Property.java	Tue Aug 26 17:35:37 2014 +0200
     1.3 @@ -71,9 +71,9 @@
     1.4      
     1.5      /** Is this property an array of the {@link #type()} or a single value?
     1.6       * If the property is an array, only its getter (returning mutable {@link List} of
     1.7 -     * the boxed {@link #type()}).
     1.8 +     * the boxed {@link #type()}) is generated.
     1.9       * 
    1.10 -     * @return true, if this is supposed to be an array of values.
    1.11 +     * @return true, if this property is supposed to represent an array of values
    1.12       */
    1.13      boolean array() default false;
    1.14  }