Skip to content

Commit

Permalink
Fix typo in Javadocs BigIntegers -> BigInteger (#1318)
Browse files Browse the repository at this point in the history
  • Loading branch information
facewise committed Jun 27, 2024
1 parent 81bf04c commit 9ac4488
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/fasterxml/jackson/core/JsonParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ public enum Feature {

/**
* Feature that determines whether to use the built-in Java code for parsing
* <code>BigDecimal</code>s and <code>BigIntegers</code>s or to use
* <code>BigDecimal</code>s and <code>BigInteger</code>s or to use
* specifically optimized custom implementation instead.
*<p>
* This setting is disabled by default for backwards compatibility.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public enum StreamReadFeature

/**
* Feature that determines whether to use the built-in Java code for parsing
* <code>BigDecimal</code>s and <code>BigIntegers</code>s or to use
* <code>BigDecimal</code>s and <code>BigInteger</code>s or to use
* {@code FastDoubleParser} instead.
*<p>
* This setting is disabled by default.
Expand Down

0 comments on commit 9ac4488

Please sign in to comment.