diff options
author | Loïc Hoguin <[email protected]> | 2016-06-06 16:12:24 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-06-06 16:12:24 +0200 |
commit | fb6940599c6195429b0471f2fd04f61af323ff3a (patch) | |
tree | 3fb26d03417bc2a227a43e1a66b29296e5d58f8e /doc/src | |
parent | b5a40256ddd5585d12c2a01771eb93d4a8630a62 (diff) | |
download | cowboy-fb6940599c6195429b0471f2fd04f61af323ff3a.tar.gz cowboy-fb6940599c6195429b0471f2fd04f61af323ff3a.tar.bz2 cowboy-fb6940599c6195429b0471f2fd04f61af323ff3a.zip |
Wording tweak in static handler chapter in the guide
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/guide/static_files.asciidoc | 4 |
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. |