aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-06-11 15:57:21 +0200
committerLoïc Hoguin <[email protected]>2018-06-11 15:57:21 +0200
commit57583364532eed5c3a603307a24ab7857cf27b22 (patch)
tree7312c615d606c441afec2813bfc5a36fb7418669 /doc
parent76f19cf52d5aabab3cf0773ec6b5987101e9ac3f (diff)
downloadcowboy-57583364532eed5c3a603307a24ab7857cf27b22.tar.gz
cowboy-57583364532eed5c3a603307a24ab7857cf27b22.tar.bz2
cowboy-57583364532eed5c3a603307a24ab7857cf27b22.zip
Fix an example missing a " in the manual
Diffstat (limited to 'doc')
-rw-r--r--doc/src/manual/cowboy_router.compile.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/manual/cowboy_router.compile.asciidoc b/doc/src/manual/cowboy_router.compile.asciidoc
index f0b3f14..187d790 100644
--- a/doc/src/manual/cowboy_router.compile.asciidoc
+++ b/doc/src/manual/cowboy_router.compile.asciidoc
@@ -39,7 +39,7 @@ must be given to Cowboy as a middleware environment value.
Dispatch = cowboy_router:compile([
{'_', [
{"/", toppage_h, []},
- {"/[...], cowboy_static, {priv_dir, my_example_app, ""}}
+ {"/[...]", cowboy_static, {priv_dir, my_example_app, ""}}
]}
]),