From e4d6bf96baad0e964fa758c9b71ae1180be3b270 Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Wed, 28 Jun 2023 18:08:19 -0700 Subject: [PATCH] docs: update copy --- lib/node_modules/@stdlib/string/first/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/string/first/README.md b/lib/node_modules/@stdlib/string/first/README.md index 62d69a999188..a99669dcddc9 100644 --- a/lib/node_modules/@stdlib/string/first/README.md +++ b/lib/node_modules/@stdlib/string/first/README.md @@ -42,7 +42,7 @@ out = first( 'Hidden Treasures' ); // returns 'H' ``` -If provided a second argument, the function returns the first `n` characters. +If provided a second argument, the function returns the first `n` visual characters. ```javascript var out = first( 'foo bar', 5 );