Skip to content

Commit 722556b

Browse files
committed
Minor javadoc fixes
1 parent 4228863 commit 722556b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/fasterxml/jackson/core/JsonGenerator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public abstract class JsonGenerator
3131
implements Closeable, Flushable, Versioned
3232
{
3333
/**
34-
* Default set of {@link StreamReadCapability}ies that may be used as
34+
* Default set of {@link StreamWriteCapability}ies that may be used as
3535
* basis for format-specific readers (or as bogus instance if non-null
3636
* set needs to be passed).
3737
*
@@ -41,7 +41,7 @@ public abstract class JsonGenerator
4141
= JacksonFeatureSet.fromDefaults(StreamWriteCapability.values());
4242

4343
/**
44-
* Default set of {@link StreamReadCapability}ies for typical textual formats,
44+
* Default set of {@link StreamWriteCapability}ies for typical textual formats,
4545
* to use either as-is, or as a base with possible differences.
4646
*
4747
* @since 2.12
@@ -50,7 +50,7 @@ public abstract class JsonGenerator
5050
= DEFAULT_WRITE_CAPABILITIES.with(StreamWriteCapability.CAN_WRITE_FORMATTED_NUMBERS);
5151

5252
/**
53-
* Default set of {@link StreamReadCapability}ies for typical binary formats,
53+
* Default set of {@link StreamWriteCapability}ies for typical binary formats,
5454
* to use either as-is, or as a base with possible differences.
5555
*
5656
* @since 2.12

0 commit comments

Comments
 (0)