aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-06-06 16:12:24 +0200
committerLoïc Hoguin <[email protected]>2016-06-06 16:12:24 +0200
commitfb6940599c6195429b0471f2fd04f61af323ff3a (patch)
tree3fb26d03417bc2a227a43e1a66b29296e5d58f8e
parentb5a40256ddd5585d12c2a01771eb93d4a8630a62 (diff)
downloadcowboy-fb6940599c6195429b0471f2fd04f61af323ff3a.tar.gz
cowboy-fb6940599c6195429b0471f2fd04f61af323ff3a.tar.bz2
cowboy-fb6940599c6195429b0471f2fd04f61af323ff3a.zip
Wording tweak in static handler chapter in the guide
-rw-r--r--doc/src/guide/static_files.asciidoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/guide/static_files.asciidoc b/doc/src/guide/static_files.asciidoc
index 39197a8..ef27119 100644
--- a/doc/src/guide/static_files.asciidoc
+++ b/doc/src/guide/static_files.asciidoc
@@ -124,8 +124,8 @@ a binary string is also allowed (but will require extra
processing). If the function can't figure out the mimetype,
then it should return `{<<"application">>, <<"octet-stream">>, []}`.
-When the static handler fails to find the extension in the
-list, it will send the file as `application/octet-stream`.
+When the static handler fails to find the extension,
+it will send the file as `application/octet-stream`.
A browser receiving such file will attempt to download it
directly to disk.