From 304150b038b61e9a104d28b06292a7bb7c7cde28 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 8 Feb 2025 02:44:29 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/Base/XMLTools.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Base/XMLTools.h b/src/Base/XMLTools.h index 3ff23b5293..cc17d1b336 100644 --- a/src/Base/XMLTools.h +++ b/src/Base/XMLTools.h @@ -175,7 +175,7 @@ inline XStr::~XStr() } // Uses the compiler to create a cache of transcoded string literals so that each subsequent call -// can re-use the data from the lambda's initial creation. Permits the same usage as +// can re-use the data from the lambda's initial creation. Permits the same usage as // XStr("literal").unicodeForm() #define XStrLiteral(literal) \ ([]() -> const XStr& { \ @@ -220,7 +220,7 @@ inline XUTF8Str::XUTF8Str(const char* const fromTranscode) inline XUTF8Str::~XUTF8Str() = default; // Uses the compiler to create a cache of transcoded string literals so that each subsequent call -// can re-use the data from the lambda's initial creation. Permits the same usage as +// can re-use the data from the lambda's initial creation. Permits the same usage as // XStr("literal").unicodeForm() #define XUTF8StrLiteral(literal) \ ([]() -> const XUTF8Str& { \