From 0420bee9d5799033041228ff0466c40d76fb3613 Mon Sep 17 00:00:00 2001 From: nschnitzer Date: Tue, 4 Dec 2018 18:28:47 -0500 Subject: [PATCH] Fixed Grammatical Errors --- .../persistence/serializers/GsonSerializer.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/src/main/java/org/terasology/persistence/serializers/GsonSerializer.java b/engine/src/main/java/org/terasology/persistence/serializers/GsonSerializer.java index 04ba3f991e0..7c9a20f0ecd 100644 --- a/engine/src/main/java/org/terasology/persistence/serializers/GsonSerializer.java +++ b/engine/src/main/java/org/terasology/persistence/serializers/GsonSerializer.java @@ -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 @@ -70,7 +70,7 @@ public String toJson(T object, TypeHandler 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 @@ -85,7 +85,7 @@ public void writeJson(T object, TypeHandler 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 @@ -100,7 +100,7 @@ public void writeJson(T object, TypeHandler 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 @@ -115,7 +115,7 @@ public void writeJson(T object, TypeHandler 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