Merge: Check binary files that might be wrongly commited
authorJean Privat <jean@pryen.org>
Thu, 27 Apr 2017 20:07:37 +0000 (16:07 -0400)
committerJean Privat <jean@pryen.org>
Thu, 27 Apr 2017 20:07:37 +0000 (16:07 -0400)
Pull-Request: #2273
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>

1  2 
lib/popcorn/README.md

diff --combined lib/popcorn/README.md
@@@ -364,7 -364,7 +364,7 @@@ The app declared in this example will t
  ### Route parameters
  
  **Route parameters** are variable parts of a route path. They can be used to path
- arguments within the URI.\13
+ arguments within the URI.
  Parameters in a route are prefixed with a colon `:` like in `:userId`, `:year`.
  
  The following example declares a handler `UserHome` that responds with the `user`
@@@ -718,7 -718,7 +718,7 @@@ app.listen("localhost", 3000
  
  ## Sessions
  
 -**Sessions** can be used thanks to the built-in `SessionMiddleware`.
 +**Sessions** can be used thanks to the built-in `SessionInit` middleware.
  
  Here a simple example of login button that define a value in the `req` session.
  
@@@ -747,7 -747,7 +747,7 @@@ class AppLogi
  end
  
  var app = new App
 -app.use("/*", new SessionInit)
 +app.use_before("/*", new SessionInit)
  app.use("/", new AppLogin)
  app.listen("localhost", 3000)
  ~~~