summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2020-10-16 11:18:51 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-10-16 11:18:51 +0200
commit2cda3937b6e8cd333e4a4388553a17339fce82ac (patch)
treeb54d0b5af534cc4ebc869f1c06506026befcd936 /README
parent65df3f2e9a3961541ac33f1a147d373f814aedf9 (diff)
README: fix unescaped character in regex in awk in filter example
Found by testing using mawk.
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 693af00..d2b7400 100644
--- a/README
+++ b/README
@@ -289,7 +289,7 @@ advertisements, strip tracking parameters and more.
}
# shorten feedburner links.
- if (match(s, /^(http|https):\/\/[^/]+\/~r\/.*\/~3\/[^\/]+\//)) {
+ if (match(s, /^(http|https):\/\/[^\/]+\/~r\/.*\/~3\/[^\/]+\//)) {
s = substr($3, RSTART, RLENGTH);
}