From a8cdbe516d259544c8537b314ef71db356839dfd Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Wed, 8 Dec 2021 16:07:14 +0300 Subject: [PATCH] Fixed a typo, added character escaping in docs. --- doc/string_view.qbk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/string_view.qbk b/doc/string_view.qbk index 31c808b..0e37822 100644 --- a/doc/string_view.qbk +++ b/doc/string_view.qbk @@ -37,17 +37,17 @@ Boost.Utility also includes the class __string_ref__: - __string_ref__ is the initial implementation of Jeffrey Yaskin's [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3442.html N3442: string_ref: a non-owning reference to a string]. -- __string_view__ is an updated implementation to reflect the Library Fundamentals TS [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4480.html N4480: \[string.view\]] +- __string_view__ is an updated implementation to reflect the Library Fundamentals TS [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4480.html N4480: \[string.view\]]. Please prefer __string_view__ / __basic_string_view__ over __string_ref__ / __basic_string_ref__: -- The __basic_string_view__ class better matches __std_basic_string_view__ +- The __basic_string_view__ class better matches __std_basic_string_view__. - __basic_string_view__ has WAY more constexpr support. - Code that uses __basic_string_ref__ should continue to work. -- No much code depends on __basic_string_ref__ anymore +- Not much code depends on __basic_string_ref__ anymore. ]