Skip to content

Commit f0b5cd7

Browse files
committed
docs: fix grammar
1 parent adc9087 commit f0b5cd7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/string/first/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The function supports the following options:
4747
- **mode**: type of characters to return. Must be one of the following:
4848

4949
- `'grapheme'`: grapheme clusters. Appropriate for strings containing visual characters which can span multiple Unicode code points (e.g., emoji).
50-
- `'code_point'`: Unicode code points. Appropriate for strings containing visual characters which are comprised of more than one Unicode code units.
50+
- `'code_point'`: Unicode code points. Appropriate for strings containing visual characters which are comprised of more than one Unicode code unit.
5151
- `'code_unit'`: UTF-16 code units. Appropriate for strings containing visual characters drawn from the basic multilingual plane (BMP) (e.g., common characters, such as those from the Latin, Greek, and Cyrillic alphabets).
5252

5353
Default: `'grapheme'`.

lib/node_modules/@stdlib/string/first/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
characters which can span multiple Unicode code points (e.g., emoji).
2121
- code_point: Unicode code points. Appropriate for strings containing
2222
visual characters which are comprised of more than one Unicode code
23-
units.
23+
unit.
2424
- code_unit': UTF-16 code units. Appropriate for strings containing
2525
visual characters drawn from the basic multilingual plane (BMP) (e.g.,
2626
common characters, such as those from the Latin, Greek, and Cyrillic

lib/node_modules/@stdlib/string/first/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ interface Options {
3232
* - The following option values are supported:
3333
*
3434
* - `'grapheme'`: grapheme clusters. Appropriate for strings containing visual characters which can span multiple Unicode code points (e.g., emoji).
35-
* - `'code_point'`: Unicode code points. Appropriate for strings containing visual characters which are comprised of more than one Unicode code units.
35+
* - `'code_point'`: Unicode code points. Appropriate for strings containing visual characters which are comprised of more than one Unicode code unit.
3636
* - `'code_unit'`: UTF-16 code units. Appropriate for strings containing visual characters drawn from the basic multilingual plane (BMP) (e.g., common characters, such as those from the Latin, Greek, and Cyrillic alphabets).
3737
*/
3838
mode?: 'grapheme' | 'code_point' | 'code_unit';

0 commit comments

Comments
 (0)