Skip to content

Commit

Permalink
fix doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperjj committed Aug 3, 2016
1 parent 5d0ff08 commit ba685f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/main/java/me/doubledutch/lazyjson/LazyObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public String optString(String key){
* Returns the default value if there is no such key.
*
* @param key the name of the field on this object
* @param defaltValue the default value to return
* @param defaultValue the default value to return
* @return the requested string value or the default value if there was no such key
*/
public String optString(String key,String defaultValue){
Expand Down Expand Up @@ -106,7 +106,7 @@ public int optInt(String key){
* Returns the default value if there is no such key.
*
* @param key the name of the field on this object
* @param defaltValue the default value to return
* @param defaultValue the default value to return
* @return the requested integer value or the default value if there was no such key
*/
public int optInt(String key,int defaultValue){
Expand Down Expand Up @@ -147,7 +147,7 @@ public long optLong(String key){
* Returns the default value if there is no such key.
*
* @param key the name of the field on this object
* @param defaltValue the default value to return
* @param defaultValue the default value to return
* @return the requested long value or the default value if there was no such key
*/
public long optLong(String key,long defaultValue){
Expand Down Expand Up @@ -188,7 +188,7 @@ public double optDouble(String key){
* Returns the default value if there is no such key.
*
* @param key the name of the field on this object
* @param defaltValue the default value to return
* @param defaultValue the default value to return
* @return the requested long value or the default value if there was no such key
*/
public double optDouble(String key,double defaultValue){
Expand Down Expand Up @@ -246,7 +246,7 @@ public boolean optBoolean(String key){
* Returns the default value if there is no such key.
*
* @param key the name of the field on this object
* @param defaltValue the default value to return
* @param defaultValue the default value to return
* @return the requested boolean value or the default value if there was no such key
*/
public boolean optBoolean(String key,boolean defaultValue){
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Wed Aug 03 16:52:38 PDT 2016
#Wed Aug 03 16:57:57 PDT 2016
BUILD_VERSION=1.1.0
BUILD_DATE=2016-08-03T23\:52\:38Z
BUILD_NUMBER=139
BUILD_DATE=2016-08-03T23\:57\:57Z
BUILD_NUMBER=141

0 comments on commit ba685f4

Please sign in to comment.