From ec838684886d86c371db0202b6223ca8ed963e88 Mon Sep 17 00:00:00 2001 From: Jan Schultke Date: Wed, 24 Jan 2024 23:05:30 +0100 Subject: [PATCH] improve wording in one sentence Co-authored-by: Jonathan Wakely --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 13ca559b0..534b2bf99 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3257,7 +3257,7 @@ Otherwise, a `tuple` is useful in variadic templates. return {status, something()}; } -C++98's standard library somewhat used this style by returning `pair` in some functions. +C++98's standard library used this style in places, by returning `pair` in some functions. For example, given a `set my_set`, consider: // C++98