@@ -38,7 +38,7 @@ package object core {
38
38
/**
39
39
* Deserialize JSON content encoded in UTF-8 from an input stream into a value of given `A` type.
40
40
*
41
- * While it is less efficient than scanning JSON values from an input stream using pooled readers but it can be
41
+ * While it is less efficient than scanning JSON values from an input stream using pooled readers, but it can be
42
42
* safely used when a non-reentrant call is used in the same thread stack.
43
43
*
44
44
* @tparam A type of the value to parse
@@ -90,7 +90,7 @@ package object core {
90
90
*
91
91
* All parsed values will be passed to consuming function `f`.
92
92
*
93
- * While it is less efficient than scanning JSON values from an input stream using pooled readers but it can be
93
+ * While it is less efficient than scanning JSON values from an input stream using pooled readers, but it can be
94
94
* safely used when a non-reentrant call is used in the same thread stack.
95
95
*
96
96
* @tparam A type of the value to parse
@@ -142,7 +142,7 @@ package object core {
142
142
*
143
143
* All parsed values will be passed to consuming function `f`.
144
144
*
145
- * While it is less efficient than scanning JSON array from an input stream using pooled readers but it can be
145
+ * While it is less efficient than scanning JSON array from an input stream using pooled readers, but it can be
146
146
* safely used when a non-reentrant call is used in the same thread stack.
147
147
*
148
148
* @tparam A type of the value to parse
@@ -187,7 +187,7 @@ package object core {
187
187
/**
188
188
* Deserialize JSON content encoded in UTF-8 from a byte array into a value of given `A` type.
189
189
*
190
- * While it is less efficient than parsing from a byte array using pooled readers but it can be safely used
190
+ * While it is less efficient than parsing from a byte array using pooled readers, but it can be safely used
191
191
* when a non-reentrant call is used in the same thread stack.
192
192
*
193
193
* @tparam A type of the value to parse
@@ -237,7 +237,7 @@ package object core {
237
237
/**
238
238
* Deserialize JSON content encoded in UTF-8 from a byte array into a value of given `A` type.
239
239
*
240
- * While it is less efficient than parsing from a sub array using pooled readers but it can be safely used
240
+ * While it is less efficient than parsing from a sub array using pooled readers, but it can be safely used
241
241
* when a non-reentrant call is used in the same thread stack.
242
242
*
243
243
* @tparam A type of the value to parse
@@ -295,7 +295,7 @@ package object core {
295
295
* value will be parsed before reaching of the limit. In any case the buffer position will be set to the next
296
296
* position after the last read byte.
297
297
*
298
- * While it is less efficient than parsing from a byte buffer using pooled readers but it can be safely used
298
+ * While it is less efficient than parsing from a byte buffer using pooled readers, but it can be safely used
299
299
* when a non-reentrant call is used in the same thread stack.
300
300
*
301
301
* @tparam A type of the value to parse
@@ -336,7 +336,7 @@ package object core {
336
336
/**
337
337
* Deserialize JSON content from a string into a value of given `A` type.
338
338
*
339
- * While it is less efficient than parsing from a string using pooled readers but it can be safely used
339
+ * While it is less efficient than parsing from a string using pooled readers, but it can be safely used
340
340
* when a non-reentrant call is used in the same thread stack.
341
341
*
342
342
* @tparam A type of the value to parse
@@ -382,7 +382,7 @@ package object core {
382
382
/**
383
383
* Serialize the `x` argument to the provided output stream in UTF-8 encoding of JSON format.
384
384
*
385
- * While it is less efficient than serialization to an output stream using pooled writers but it can be safely used
385
+ * While it is less efficient than serialization to an output stream using pooled writers, but it can be safely used
386
386
* when a non-reentrant call is used in the same thread stack.
387
387
*
388
388
* @tparam A type of value to serialize
@@ -427,7 +427,7 @@ package object core {
427
427
/**
428
428
* Serialize the `x` argument to a new allocated instance of byte array in UTF-8 encoding of JSON format.
429
429
*
430
- * While it is less efficient than serialization to a byte array using pooled writers but it can be safely used
430
+ * While it is less efficient than serialization to a byte array using pooled writers, but it can be safely used
431
431
* when a non-reentrant call is used in the same thread stack.
432
432
*
433
433
* @tparam A type of value to serialize
@@ -477,7 +477,7 @@ package object core {
477
477
/**
478
478
* Serialize the `x` argument to the given instance of byte array in UTF-8 encoding of JSON format.
479
479
*
480
- * While it is less efficient than serialization to a sub array using pooled writers but it can be safely used
480
+ * While it is less efficient than serialization to a sub array using pooled writers, but it can be safely used
481
481
* when a non-reentrant call is used in the same thread stack.
482
482
*
483
483
* @tparam A type of value to serialize
@@ -508,7 +508,7 @@ package object core {
508
508
* Serialize the `x` argument to the given instance of byte buffer in UTF-8 encoding of JSON format.
509
509
*
510
510
* Serialization will start from the current position up to the provided byte buffer limit.
511
- * On return the byte buffer will has position set to the next position after the last written byte.
511
+ * On return the byte buffer will have position set to the next position after the last written byte.
512
512
*
513
513
* BEWARE: It is a non-reentrant routine and should not be used in a nested way in the same thread.
514
514
*
@@ -537,9 +537,9 @@ package object core {
537
537
* Serialize the `x` argument to the given instance of byte buffer in UTF-8 encoding of JSON format.
538
538
*
539
539
* Serialization will start from the current position up to the provided byte buffer limit.
540
- * On return the byte buffer will has position set to the next position after the last written byte.
540
+ * On return the byte buffer will have position set to the next position after the last written byte.
541
541
*
542
- * While it is less efficient than serialization to a byte buffer pooled writers but it can be safely used
542
+ * While it is less efficient than serialization to a byte buffer pooled writers, but it can be safely used
543
543
* when a non-reentrant call is used in the same thread stack.
544
544
*
545
545
* @tparam A type of value to serialize
@@ -584,7 +584,7 @@ package object core {
584
584
/**
585
585
* Serialize the `x` argument to a string in JSON format.
586
586
*
587
- * While it is less efficient than serialization to a string using pooled writers but it can be safely used
587
+ * While it is less efficient than serialization to a string using pooled writers, but it can be safely used
588
588
* when a non-reentrant call is used in the same thread stack.
589
589
*
590
590
* @tparam A type of value to serialize
0 commit comments