Skip to content

Commit 559ba1d

Browse files
committed
fix java doc
1 parent fc86418 commit 559ba1d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/src/main/java/com/alibaba/fastjson2/util/IOUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,10 @@ public static void getChars(long i, int index, char[] buf) {
293293
* @param buf byte array buffer
294294
* @param off buffer starting offset
295295
* @param unscaledVal unscaled value (precision part of BigDecimal)
296-
* @param scale number of digits after the decimal point, caller must ensure scale >= 0
296+
* @param scale number of digits after the decimal point, caller must ensure scale >= 0
297297
* @return offset after writing
298298
*
299-
* Note: This method trusts that the caller has ensured scale >= 0
299+
* Note: This method trusts that the caller has ensured scale >= 0
300300
*/
301301
public static int writeDecimal(byte[] buf, int off, long unscaledVal, int scale) {
302302
if (unscaledVal < 0) {
@@ -348,10 +348,10 @@ public static int writeDecimal(byte[] buf, int off, long unscaledVal, int scale)
348348
* @param buf character array buffer
349349
* @param off buffer starting offset
350350
* @param unscaledVal unscaled value (precision part of BigDecimal)
351-
* @param scale number of digits after the decimal point, caller must ensure scale >= 0
351+
* @param scale number of digits after the decimal point, caller must ensure scale &gt;= 0
352352
* @return offset after writing
353353
*
354-
* Note: This method trusts that the caller has ensured scale >= 0
354+
* Note: This method trusts that the caller has ensured scale &gt;= 0
355355
*/
356356
public static int writeDecimal(char[] buf, int off, long unscaledVal, int scale) {
357357
if (unscaledVal < 0) {

0 commit comments

Comments
 (0)