diff --git a/docs/E-STL/standard-library.md b/docs/E-STL/standard-library.md index 18836aa..47d427e 100644 --- a/docs/E-STL/standard-library.md +++ b/docs/E-STL/standard-library.md @@ -161,12 +161,12 @@ Hello World C++17 introduced the `` library to augment the `std::string` class and avoid redundant copying operations. The class template `std::basic_string_view` defines a lightweight non-owning, read-only view into a contiguous sequence of characters with the first element at position zero. -The `string_view` classes refer to sequences of character-like objects. The specializations of the `>` template are: +The `string_view` classes refer to sequences of character-like objects. The specializations of the `std::basic_string_view` template are: -- `std::string_view >` -- `std::wstring_view >` -- `std::u16string_view >` -- `std::u32string_view >` +- `std::string_view ` +- `std::wstring_view ` +- `std::u16string_view ` +- `std::u32string_view ` The public member functions include: