From 577c45aa99c8097ad2c3a581dbcdb3b323434e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helder=20Magalh=C3=A3es?= Date: Thu, 16 Jul 2026 09:13:54 +0100 Subject: [PATCH] Typo in syntax_perl.qbk --- doc/syntax_perl.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index 6d062f468..7631460a2 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -615,7 +615,7 @@ with individual elements matched as follows; [table [[Construct][What gets matched]] [[[^AtomA AtomB]][Locates the best match for /AtomA/ that has a following match for /AtomB/.]] -[[[^Expression1 | Expression2]][If /Expresion1/ can be matched then returns that match, +[[[^Expression1 | Expression2]][If /Expression1/ can be matched then returns that match, otherwise attempts to match /Expression2/.]] [[[^S{N}]][Matches /S/ repeated exactly N times.]] [[[^S{N,M}]][Matches S repeated between N and M times, and as many times as possible.]]