]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/furnace/redirection/redirection-docs.factor
factor: fix some spacing
[factor.git] / basis / furnace / redirection / redirection-docs.factor
index e8f917f1f81631d7d75b80a731af5877ac0a6499..b7035d24aa6e0576643848d4b70f7392484324ef 100644 (file)
@@ -15,23 +15,23 @@ HELP: <secure-only>
 
 HELP: <secure-redirect>
 { $values
-     { "url" url }
-     { "response" response }
+    { "url" url }
+    { "response" response }
 }
 { $description "Creates a responder which unconditionally redirects the client to the given URL after setting its protocol to HTTPS." }
 { $notes "This word is intended to be used with a relative URL. The client is redirected to the relative URL, but with HTTPS instead of HTTP." } ;
 
 HELP: >secure-url
 { $values
-     { "url" url }
-     { "url'" url }
+    { "url" url }
+    { "url'" url }
 }
 { $description "Sets the protocol of a URL to HTTPS." } ;
 
 HELP: if-secure
 { $values
-     { "quot" quotation }
-     { "response" response }
+    { "quot" quotation }
+    { "response" response }
 }
 { $description "Runs a quotation if the current request was made over HTTPS, otherwise returns a redirect to have the client request the current page again via HTTPS." } ;