From 7a2f6ac21082350899cdb7652eff0ffe063d6bc8 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 7 Aug 2023 09:33:45 -0700 Subject: [PATCH] Fix a comment --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index dfd5d78a..6cd2c355 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -920,7 +920,7 @@ class basic_memory_buffer final : public detail::buffer { private: T store_[SIZE]; - // Don't inherit from Allocator avoid generating type_info for it. + // Don't inherit from Allocator to avoid generating type_info for it. FMT_NO_UNIQUE_ADDRESS Allocator alloc_; // Deallocate memory allocated by the buffer.