From ecf137fec344e27cb645e896de58870d95a4263a Mon Sep 17 00:00:00 2001 From: Joel Leitch Date: Mon, 11 Apr 2011 19:01:07 +0000 Subject: [PATCH] More fixes to JavaDoc. --- gson/src/main/java/com/google/gson/GsonBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gson/src/main/java/com/google/gson/GsonBuilder.java b/gson/src/main/java/com/google/gson/GsonBuilder.java index c5f10efd..6fc68126 100644 --- a/gson/src/main/java/com/google/gson/GsonBuilder.java +++ b/gson/src/main/java/com/google/gson/GsonBuilder.java @@ -355,7 +355,7 @@ public final class GsonBuilder { } /** - * Configures Gson to apply the passed exclusion strategies during serialization. + * Configures Gson to apply the passed in exclusion strategy during serialization. * If this method is invoked numerous times with different exclusion strategy objects * then the exclusion strategies that were added will be applied as a disjunction rule. * This means that if one of the added exclusion strategies suggests that a field (or @@ -372,7 +372,7 @@ public final class GsonBuilder { } /** - * Configures Gson to apply the passed exclusion strategies during deserialization. + * Configures Gson to apply the passed in exclusion strategy during deserialization. * If this method is invoked numerous times with different exclusion strategy objects * then the exclusion strategies that were added will be applied as a disjunction rule. * This means that if one of the added exclusion strategies suggests that a field (or