Skip to content

Commit

Permalink
Fix typo in GsonBuilder Javadoc (#2213)
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyGalbreath authored Oct 1, 2022
1 parent ea7ab7c commit 47668fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gson/src/main/java/com/google/gson/GsonBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public GsonBuilder serializeNulls() {
* <p>For this case, assume that a type adapter was NOT registered for some
* {@code Point} class, but rather the default Gson serialization is applied.
* In this case, some {@code new Point(2,3)} would serialize as {@code
* {"x":2,"y":5}}.
* {"x":2,"y":3}}.
*
* <p>Given the assumption above, a {@code Map<Point, String>} will be
* serialize as an array of arrays (can be viewed as an entry set of pairs).
Expand Down

0 comments on commit 47668fa

Please sign in to comment.