git: fb01470ef0 - main - Typo fixes

From: Benedict Reuschling <bcr_at_FreeBSD.org>
Date: Fri, 29 Dec 2023 12:29:07 UTC
The branch main has been updated by bcr:

URL: https://cgit.FreeBSD.org/doc/commit/?id=fb01470ef0194f83df6a9cb980a4d0530ecf3b9f

commit fb01470ef0194f83df6a9cb980a4d0530ecf3b9f
Author:     Benedict Reuschling <bcr@FreeBSD.org>
AuthorDate: 2023-12-29 12:28:53 +0000
Commit:     Benedict Reuschling <bcr@FreeBSD.org>
CommitDate: 2023-12-29 12:28:53 +0000

    Typo fixes
---
 documentation/content/en/articles/committers-guide/_index.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/documentation/content/en/articles/committers-guide/_index.adoc b/documentation/content/en/articles/committers-guide/_index.adoc
index 9204c649a9..7ca94ab1df 100644
--- a/documentation/content/en/articles/committers-guide/_index.adoc
+++ b/documentation/content/en/articles/committers-guide/_index.adoc
@@ -3147,8 +3147,8 @@ These compilers have different strengths and weaknesses, and supporting both all
 Clang and GCC support similar dialects of C and C++, necessitating a relatively small amount of conditional code.
 The project gains increased code coverage and improves the code quality by using features from both compilers.
 The project is able to build in more user environments and leverage more CI environments by supporting this range, increasing convenience for users and giving them more tools to test with.
-By carefully constraining the range of versions supported to modern versions of these compilers, the project avoids unduely increasing the testing matrix.
-Older and obscure compilers, as well as older dialects of the langauges, have extremely limited support that allow user programs to build with them, but without constraining the base system to being built with them.
+By carefully constraining the range of versions supported to modern versions of these compilers, the project avoids unduly increasing the testing matrix.
+Older and obscure compilers, as well as older dialects of the languages, have extremely limited support that allow user programs to build with them, but without constraining the base system to being built with them.
 The exact balance continues to evolve to ensure the benefits of extra work remain greater than the burdens it imposes.
 The project used to support really old Intel compilers or old GCC versions, but we traded supporting those obsolete compilers for a carefully selected range of modern compilers.
 This section documents where we use different compilers, and the expectations around that.