summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2017-12-14 19:29:42 +0000
committerRich Bowen <rbowen@apache.org>2017-12-14 19:29:42 +0000
commit79b599086c8b8c5de023f34d02574d930e219d0a (patch)
tree2b304b47731a9af92d439fdea706c83ac79b863d
parent41446bf59129d8dc1f8d47e4b383d6d6f3a1e26b (diff)
downloadhttpd-79b599086c8b8c5de023f34d02574d930e219d0a.tar.gz
Closing "|" on regex replace string
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1818198 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mod/mod_substitute.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_substitute.xml b/docs/manual/mod/mod_substitute.xml
index 39c26c1408..f2dcf292c1 100644
--- a/docs/manual/mod/mod_substitute.xml
+++ b/docs/manual/mod/mod_substitute.xml
@@ -101,7 +101,7 @@
&lt;Location "/"&gt;
AddOutputFilterByType SUBSTITUTE text/html
# "foo=k,bar=k" -> "foo/bar=k"
- Substitute "s|foo=(\w+),bar=\1|foo/bar=$1"
+ Substitute "s|foo=(\w+),bar=\1|foo/bar=$1|"
&lt;/Location&gt;
</highlight>
</example>