Skip to content

Commit

Permalink
Merge pull request google#837 from zzz40500/patch-1
Browse files Browse the repository at this point in the history
 Documentation Error
  • Loading branch information
JakeWharton committed Apr 23, 2016
2 parents 874e74a + 71ee0e3 commit 18f1795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Integer one = gson.fromJson("1", Integer.class);
Long one = gson.fromJson("1", Long.class);
Boolean false = gson.fromJson("false", Boolean.class);
String str = gson.fromJson("\"abc\"", String.class);
String anotherStr = gson.fromJson("[\"abc\"]", String.class);
String[] anotherStr = gson.fromJson("[\"abc\"]", String[].class);
```

### <a name="TOC-Object-Examples"></a>Object Examples
Expand Down

0 comments on commit 18f1795

Please sign in to comment.