From fed3d57a3e07ec22278c65a39cea88881f993c19 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Tue, 6 Feb 2024 02:57:52 +0000 Subject: [PATCH] Auto-generated commit --- base/ends-with/README.md | 2 +- base/starts-with/README.md | 2 +- ends-with/README.md | 2 +- starts-with/README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base/ends-with/README.md b/base/ends-with/README.md index 50efd522..154f8f4a 100644 --- a/base/ends-with/README.md +++ b/base/ends-with/README.md @@ -90,7 +90,7 @@ var bool = endsWith( str, '' ); - The function assumes string values for the first and second arguments and assumes that the `len` argument is an integer value. - The function does **not** clamp positive `len` values to the end of the input string. - - Except when provided an empty `search` string, the function **always** returns `false` is a `len` resolves to a starting search position which exceeds the bounds of the input string. + - Except when provided an empty `search` string, the function **always** returns `false` if `len` resolves to a starting search position which exceeds the bounds of the input string. diff --git a/base/starts-with/README.md b/base/starts-with/README.md index 471e61a6..abf21818 100644 --- a/base/starts-with/README.md +++ b/base/starts-with/README.md @@ -86,7 +86,7 @@ var bool = startsWith( str, '', 0 ); - The function assumes string values for the first and second arguments and assumes that the `position` argument is an integer value. - The function does **not** clamp negative `position` values. Instead, when provided a negative `position`, the function resolves the starting search position relative to the end of the string. - - Except when provided an empty `search` string, the function **always** returns `false` is a `position` resolves to a starting search position which exceeds the bounds of the input string. + - Except when provided an empty `search` string, the function **always** returns `false` if a `position` resolves to a starting search position which exceeds the bounds of the input string. diff --git a/ends-with/README.md b/ends-with/README.md index c0221c43..ec47fb10 100644 --- a/ends-with/README.md +++ b/ends-with/README.md @@ -90,7 +90,7 @@ var bool = endsWith( str, '' ); - The function requires string values for the first and second arguments and requires that the `len` argument is an integer value. - The function does **not** clamp positive `len` values to the end of the input string. - - Except when provided an empty `search` string, the function **always** returns `false` is a `len` resolves to a starting search position which exceeds the bounds of the input string. + - Except when provided an empty `search` string, the function **always** returns `false` if `len` resolves to a starting search position which exceeds the bounds of the input string. diff --git a/starts-with/README.md b/starts-with/README.md index 3b34a8a7..ba5877a3 100644 --- a/starts-with/README.md +++ b/starts-with/README.md @@ -86,7 +86,7 @@ var bool = startsWith( str, '' ); - The function requires string values for the first and second arguments and requires that the `position` argument be an integer value. - The function does **not** clamp negative `position` values. Instead, when provided a negative `position`, the function resolves the starting search position relative to the end of the string. - - Except when provided an empty `search` string, the function **always** returns `false` is a `position` resolves to a starting search position which exceeds the bounds of the input string. + - Except when provided an empty `search` string, the function **always** returns `false` if a `position` resolves to a starting search position which exceeds the bounds of the input string.