]> granicus.if.org Git - apache/commitdiff
Fix weird indentation
authorRich Bowen <rbowen@apache.org>
Thu, 3 Mar 2016 01:12:33 +0000 (01:12 +0000)
committerRich Bowen <rbowen@apache.org>
Thu, 3 Mar 2016 01:12:33 +0000 (01:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1733402 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/rewritemap.xml

index e97f9062f3656e055f10cb970a4b85ebdebc11b5..eb36106c3f55ba6efd36d7fd9aaccbb6ef1bd615 100644 (file)
@@ -380,12 +380,12 @@ RewriteRule "-" "${d2u:%{REQUEST_URI}}"
 
     <p><strong>dash2under.pl</strong></p>
     <highlight language="perl">
-    #!/usr/bin/perl
-    $| = 1; # Turn off I/O buffering
-    while (&lt;STDIN&gt;) {
-        s/-/_/g; # Replace dashes with underscores
-        print $_;
-    }
+#!/usr/bin/perl
+$| = 1; # Turn off I/O buffering
+while (&lt;STDIN&gt;) {
+    s/-/_/g; # Replace dashes with underscores
+    print $_;
+}
     </highlight>
 
 <note><title>Caution!</title>