aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 876af0f..153d95c 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ handler could be written like this:
-export([init/2, handle/2]).
init(Req, Opts) ->
- {ok, undefined}.
+ {ok, Req, undefined}.
handle(Req, State) ->
{reply, 200, [], "Hello World!"}.