From bad5cc804733d7f439e3e32822aa4436be28360c Mon Sep 17 00:00:00 2001 From: Jonathan Paugh Date: Mon, 22 Feb 2016 15:30:29 -0600 Subject: [PATCH] Collapse bullets into a paragraph The section entitled "Collections Limitations" contains 3 bullets, but one semantic point. Make this point in a paragraph instead of a bullet list. --- UserGuide.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/UserGuide.md b/UserGuide.md index 0a39b6c9..d7d1905b 100644 --- a/UserGuide.md +++ b/UserGuide.md @@ -223,11 +223,8 @@ Unfortunately, there is no way to get around this in Java. #### Collections Limitations -* Can serialize collection of arbitrary objects but can not deserialize from it -* Because there is no way for the user to indicate the type of the resulting object -* While deserializing, Collection must be of a specific generic type - -All of this makes sense, and is rarely a problem when following good Java coding practices. +Gson can serialize collection of arbitrary objects but can not deserialize from it, because there is no way for the user to indicate the type of the resulting object. Instead, while deserializing, the Collection must be of a specific, generic type. +This makes sense, and is rarely a problem when following good Java coding practices. ### Serializing and Deserializing Generic Types