Skip to content

Commit 77f8e89

Browse files
committed
Merge pull request #910 from eduardische/patch-1
Javadoc fix for JsonSerializer
2 parents 06e37f3 + f4a270f commit 77f8e89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/JsonSerializer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ public abstract void serialize(T value, JsonGenerator gen, SerializerProvider se
138138
* typeSer.writeTypeSuffixForScalar(value, gen);
139139
*</pre>
140140
* and implementations for type serialized as JSON Arrays or Objects would differ slightly,
141-
* as <code>START-ARRAY></code>/<code>END-ARRAY</code> and
142-
* <code>START-OBJECT></code>/<code>END-OBJECT</code> pairs
141+
* as <code>START-ARRAY</code>/<code>END-ARRAY</code> and
142+
* <code>START-OBJECT</code>/<code>END-OBJECT</code> pairs
143143
* need to be properly handled with respect to serializing of contents.
144144
*
145145
* @param value Value to serialize; can <b>not</b> be null.

0 commit comments

Comments
 (0)