From 218e377bdc33d9f17ee3d1fe20d85f118ff4a21f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Tue, 15 Jul 2025 11:47:41 -0400 Subject: [PATCH 1/2] fix: small typo Subject verb agreement --- exercises/concept/last-will/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/last-will/.docs/introduction.md b/exercises/concept/last-will/.docs/introduction.md index cb69db98d..69aeee78a 100644 --- a/exercises/concept/last-will/.docs/introduction.md +++ b/exercises/concept/last-will/.docs/introduction.md @@ -2,7 +2,7 @@ ## Namespaces -An important method for code organization are namespaces. +An important method for code organization is namespaces. Two functions might have a naming collision, which can be resolved by putting them in different namespaces. Namespaces can be nested, which might help to structure big code bases. Access to the namespaces is done via the scope-resolution operator `::`. From f36670e91e566dce625ec836d6ea9c240115dbef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Fri, 18 Jul 2025 12:02:40 -0400 Subject: [PATCH 2/2] Update exercises/concept/last-will/.docs/introduction.md Improve readability of the sentence Co-authored-by: Alexander Hans --- exercises/concept/last-will/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/last-will/.docs/introduction.md b/exercises/concept/last-will/.docs/introduction.md index 69aeee78a..69218dcfb 100644 --- a/exercises/concept/last-will/.docs/introduction.md +++ b/exercises/concept/last-will/.docs/introduction.md @@ -2,7 +2,7 @@ ## Namespaces -An important method for code organization is namespaces. +An important method for code organization is the use of namespaces. Two functions might have a naming collision, which can be resolved by putting them in different namespaces. Namespaces can be nested, which might help to structure big code bases. Access to the namespaces is done via the scope-resolution operator `::`.