From 190ee28b1d65d65985f1df051d7949dfe820956e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 9 Jan 2026 16:22:07 +0200 Subject: [PATCH] Update documentation --- doc/uuid/uuid_io.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/uuid/uuid_io.adoc b/doc/uuid/uuid_io.adoc index ac5a056..dea4ba0 100644 --- a/doc/uuid/uuid_io.adoc +++ b/doc/uuid/uuid_io.adoc @@ -295,7 +295,7 @@ template constexpr uuid uuid_from_string( Str const& str ); Requires: :: `Str` must be a _string-like_ type; that is, one with a nested `value_type` type (`Ch`) and with a nested `traits_type` type. - `str.data()` must return `Ch const*`. `str.size()` must return `std::size_t`. + `str.data()` must return `Ch const*`. `str.data() + str.size()` must be of type `Ch const*`. `Ch` must be a character type (one of `char`, `wchar_t`, `char8_t`, `char16_t`, `char32_t`). Effects: ::