Skip to content

Commit 374bca2

Browse files
Tyler WhitneyTyler Whitney
authored andcommitted
rearrange syntax order
1 parent 78e718e commit 374bca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/basic-string-view-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,9 +583,9 @@ Returns a random-access const_iterator that points to one past the last element.
583583
Check whether the string view ends with the specified suffix.
584584

585585
```cpp
586-
bool ends_with(const basic_string_view sv) const noexcept;
587586
bool ends_with(const CharType c) const noexcept;
588587
bool ends_with(const CharType* const x) const noexcept;
588+
bool ends_with(const basic_string_view sv) const noexcept;
589589
```
590590
591591
### Parameters

0 commit comments

Comments
 (0)