Fixed typo.

This commit is contained in:
Joel Leitch 2011-04-13 07:49:30 +00:00
parent f5d6b01ca6
commit 1c3d08794d

View File

@ -57,7 +57,7 @@ class JsonDeserializerExceptionWrapper<T> implements JsonDeserializer<T> {
StringBuilder errorMsg = new StringBuilder()
.append("The JsonDeserializer ")
.append(delegate)
.append(" failed to deserialized json object ")
.append(" failed to deserialize json object ")
.append(json)
.append(" given the type ")
.append(typeOfT);