git: 41d8ee28f2 - main - Porters handbook - Makefiles: Escape a + sign

From: Sergio Carlavilla Delgado <carlavilla_at_FreeBSD.org>
Date: Sun, 27 Jul 2025 10:48:16 UTC
The branch main has been updated by carlavilla:

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

commit 41d8ee28f24de8a4442aee3018fab1e42fbc8a39
Author:     Harald Eilertsen <haraldei@freebsdfoundation.org>
AuthorDate: 2025-07-27 10:47:13 +0000
Commit:     Sergio Carlavilla Delgado <carlavilla@FreeBSD.org>
CommitDate: 2025-07-27 10:47:13 +0000

    Porters handbook - Makefiles: Escape a + sign
    
    Pull Request:   https://github.com/freebsd/freebsd-doc/pull/499
---
 documentation/content/en/books/porters-handbook/makefiles/_index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/content/en/books/porters-handbook/makefiles/_index.adoc b/documentation/content/en/books/porters-handbook/makefiles/_index.adoc
index 243328727a..7b76b21ab1 100644
--- a/documentation/content/en/books/porters-handbook/makefiles/_index.adoc
+++ b/documentation/content/en/books/porters-handbook/makefiles/_index.adoc
@@ -2275,7 +2275,7 @@ DISTFILES=	source1.tar.gz:source1 \
 
 Okay, so the previous example did not reflect the new port's needs? In this section we will explain in detail how the fine grained fetching mechanism `MASTER_SITES:n` works and how it can be used.
 
-. Elements can be postfixed with `:__n__` where _n_ is `[^:,]+`, that is, _n_ could conceptually be any alphanumeric string but we will limit it to `[a-zA-Z_][0-9a-zA-Z_]+` for now.
+. Elements can be postfixed with `:__n__` where _n_ is `[^:,]\+`, that is, _n_ could conceptually be any alphanumeric string but we will limit it to `[a-zA-Z_][0-9a-zA-Z_]+` for now.
 +
 Moreover, string matching is case sensitive; that is, `n` is different from `N`.
 +