git: 0b89007bae - main - developers-handbook: Remove reference to old FreeBSD version

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Wed, 26 Jun 2024 00:46:44 UTC
The branch main has been updated by emaste:

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

commit 0b89007bae690331969ab00845cf7bed159abb1d
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-05-21 01:35:30 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-06-26 00:46:18 +0000

    developers-handbook: Remove reference to old FreeBSD version
    
    FreeBSD 10's EOL was long enough ago that we don't need to mention a
    specific version that switched from GCC to Clang; simply state that
    Clang is cc.
    
    Sponsored by:   The FreeBSD Foundation
---
 documentation/content/en/books/developers-handbook/tools/_index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/content/en/books/developers-handbook/tools/_index.adoc b/documentation/content/en/books/developers-handbook/tools/_index.adoc
index 0bd0f0cd3b..cf2dbc3bbb 100644
--- a/documentation/content/en/books/developers-handbook/tools/_index.adoc
+++ b/documentation/content/en/books/developers-handbook/tools/_index.adoc
@@ -191,7 +191,7 @@ Using Emacs as an IDE is discussed in <<emacs>>.
 == Compiling with `cc`
 
 This section deals with the clang compiler for C and C++, as it's installed with the FreeBSD base system.
-Starting with FreeBSD 10.X `clang` is installed as `cc`; the GNU compiler package:lang/gcc[gcc] is available in the Ports Collection.
+Clang is installed as `cc`; the GNU compiler package:lang/gcc[gcc] is available in the Ports Collection.
 The details of producing a program with an interpreter vary considerably between interpreters, and are usually well covered in the documentation and on-line help for the interpreter.
 
 Once you have written your masterpiece, the next step is to convert it into something that will (hopefully!) run on FreeBSD.