From 8e3723f18fff9a84327eaf5c128e894008be6002 Mon Sep 17 00:00:00 2001 From: Tim Lyon <45316507+tim-lyon@users.noreply.github.com> Date: Fri, 24 Feb 2023 17:41:01 +0000 Subject: [PATCH] Fix typo (#2051) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a2d4767..b1da68b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2850,7 +2850,7 @@ Suppression of unused parameter warnings. ##### Note -Allowing parameters to be unnamed was introduced in the early 1980 to address this problem. +Allowing parameters to be unnamed was introduced in the early 1980s to address this problem. If parameters are conditionally unused, declare them with the `[[maybe_unused]]` attribute. For example: