Browse Source

Fix whitespace in example

Loïc Hoguin 8 years ago
parent
commit
cef6e5b472
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/src/manual/cowboy.set_env.asciidoc

+ 1 - 1
doc/src/manual/cowboy.set_env.asciidoc

@@ -64,7 +64,7 @@ not exist.
 Dispatch = cowboy_router:compile([
     {'_', [
         {"/", toppage_h, []},
-		{"/ws", websocket_h, []}
+        {"/ws", websocket_h, []}
     ]}
 ]),