From 5c7734d662e5d1e04680b56256d8a8f93e855586 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sat, 7 Feb 2026 16:40:01 +0100 Subject: [PATCH] docs: somewhat include f-strings in bnf grammar --- docs/grammar.bnf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/grammar.bnf b/docs/grammar.bnf index 280b2ed..e2d45b4 100644 --- a/docs/grammar.bnf +++ b/docs/grammar.bnf @@ -54,7 +54,7 @@ DIGIT="regexp:\d" ALPHA="regexp:[a-zA-Z]" - STRING="regexp:('[^']*'|\"[^\"]*\")" + STRING="regexp:[fF]?('[^']*'|\"[^\"]*\")" ] }