From ebbe45e5e72f1d2db779613886ea0c62b9df6ea7 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 9 May 2025 00:02:02 -0500 Subject: [PATCH] xo-flatstring: comment consistency --- include/xo/flatstring/flatstring.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/xo/flatstring/flatstring.hpp b/include/xo/flatstring/flatstring.hpp index 60828f7e..a332950d 100644 --- a/include/xo/flatstring/flatstring.hpp +++ b/include/xo/flatstring/flatstring.hpp @@ -491,7 +491,7 @@ namespace xo { ///@} }; - /** @brief sentinel type, for forbidden stringliteral with no space for a null terminator **/ + /** @brief sentinel type, for forbidden flatstring with no space for a null terminator **/ template <> struct flatstring<0> { flatstring() = delete; }; @@ -584,7 +584,7 @@ namespace xo { * * Example: * @code - * constexpr auto cmp = flatstring_compare(stringliteral("foo"), stringliteral("bar")); + * constexpr auto cmp = flatstring_compare(flatstring("foo"), flatstring("bar")); * static_assert(cmp > 0); * @endcode **/ @@ -638,4 +638,4 @@ namespace xo { ///@} } /*namespace xo*/ -/** end stringliteral.hpp **/ +/** end flatstring.hpp **/