Skip to content

Commit

Permalink
Fixed Grammatical Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nschnitzer authored and eviltak committed Mar 12, 2019
1 parent 94205db commit 0420bee
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public GsonSerializer() {
}

/**
* writes the serialized persisted data as a JSON to {@link Writer} and returns the JSON as a string.
* Writes the serialized persisted data as a JSON to {@link Writer} and returns the JSON as a string.
*
* @param object the object to be serialized
* @param typeHandler contains how the object will be serialized
Expand All @@ -70,7 +70,7 @@ public <T> String toJson(T object, TypeHandler<T> typeHandler) {
}

/**
* Writes an object's serialized persisted data to the {@link Writer} as a JSON.
* Writes an object's serialized persisted data to the {@link Writer} as JSON.
*
* @see #writeJson(Object, TypeHandler, OutputStream)
* @param object the object to be serialized
Expand All @@ -85,7 +85,7 @@ public <T> void writeJson(T object, TypeHandler<T> typeHandler, Writer writer) {
}

/**
* Writes an object's serialized persisted data to the {@link OutputStream} as a JSON.
* Writes an object's serialized persisted data to the {@link OutputStream} as JSON.
*
* @see #writeJson(Object, TypeHandler, Writer)
* @param object the object to be serialized
Expand All @@ -100,7 +100,7 @@ public <T> void writeJson(T object, TypeHandler<T> typeHandler, OutputStream str
}

/**
* Writes the object's persisted data to the {@link File} as a JSON.
* Writes the object's persisted data to the {@link File} as JSON.
*
* @see #writeJson(Object, TypeHandler, String)
* @param object the file to be serialized
Expand All @@ -115,7 +115,7 @@ public <T> void writeJson(T object, TypeHandler<T> typeHandler, File file) throw
}

/**
* Writes the a the object's persisted data to {@link File} of a specified file name as a JSON
* Writes the a the object's persisted data to {@link File} of a specified file name as JSON
*
* @see #writeJson(Object, TypeHandler, String)
* @param object the object to be serialized
Expand Down

0 comments on commit 0420bee

Please sign in to comment.