aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2020-11-03 17:18:27 -0500
committerMarshall Lochbaum <mwlochbaum@gmail.com>2020-11-03 17:18:27 -0500
commita8b7d5c031ad7759c7d3e6c92c59cfd6261692f5 (patch)
tree6bff41ed0163b8fe063de5b64da8e360e47c720a
parent2af82d55798625383f9c42063043504ba9677c43 (diff)
Fix alternate IsEscaped implementation comment
-rw-r--r--md.bqn2
1 files changed, 1 insertions, 1 deletions
diff --git a/md.bqn b/md.bqn
index b54e27dd..91324bad 100644
--- a/md.bqn
+++ b/md.bqn
@@ -58,7 +58,7 @@ CountRuns โ† { (1+โ†•โ‰ ๐•ฉ) (โŠฃ - โŒˆ`โˆ˜ร—) ยฌ๐•ฉ }
# ๐•ฉ is a string; return a mask of the characters that are escaped, that
# is, preceded by an odd number of backslashes (since a backslash can
# escape another backslash).
-# Another implementation is {ยป<`๐•ฉ}.
+# Another implementation is {ยป<`๐•ฉ='\'}.
IsEscaped โ† {
ยป 2 | CountRuns ๐•ฉ = '\'
}