diff --git a/src/util/memory_manager.h b/src/util/memory_manager.h index a50d03ac3..af56c4507 100644 --- a/src/util/memory_manager.h +++ b/src/util/memory_manager.h @@ -131,7 +131,7 @@ void dealloc_svect(T * ptr) { template struct std_allocator { using value_type = T; - // the constructors must be proveded according to cpp docs + // the constructors must be provided according to cpp docs std_allocator() = default; template constexpr std_allocator(const std_allocator&) noexcept {} @@ -145,7 +145,7 @@ struct std_allocator { } }; -// the comparison operators must be proveded according to cpp docs +// the comparison operators must be provided according to cpp docs template bool operator==(const std_allocator&, const std_allocator&) { return true; } template