Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Feb 6, 2024
1 parent b8ad6c5 commit fed3d57
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion base/ends-with/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down
2 changes: 1 addition & 1 deletion base/starts-with/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down
2 changes: 1 addition & 1 deletion ends-with/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down
2 changes: 1 addition & 1 deletion starts-with/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down

0 comments on commit fed3d57

Please sign in to comment.