aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2011-05-16 12:36:52 +0200
committerLoïc Hoguin <[email protected]>2011-05-16 12:36:52 +0200
commit548a9a15b8b75ffd029e919fbf1352486454dfb7 (patch)
treed85f3a148d4c65646149f0ea3ac37bac12498f65 /README.md
parent42111aa11f79dcb54c54d8772d90b718fc90b8dd (diff)
downloadcowboy-548a9a15b8b75ffd029e919fbf1352486454dfb7.tar.gz
cowboy-548a9a15b8b75ffd029e919fbf1352486454dfb7.tar.bz2
cowboy-548a9a15b8b75ffd029e919fbf1352486454dfb7.zip
README: Grammar fixes.
Thanks Mewn!
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 133af3b..4b9d6f1 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Cowboy aims to provide the following advantages:
PHP or Ruby.
* No parameterized module. No process dictionary. **Clean** Erlang code.
-The server is currently in early development stage. Comments, suggestions are
+The server is currently in early development. Comments and suggestions are
more than welcome. To contribute, either open bug reports, or fork the project
and send us pull requests with new or improved functionality. You should
discuss your plans with us before doing any serious work, though, to avoid
@@ -210,7 +210,7 @@ part entirely.
Using Cowboy with other protocols
---------------------------------
-One of the strength of Cowboy is of course that you can use it with any
+One of the strengths of Cowboy is of course that you can use it with any
protocol you want. The only downside is that if it's not HTTP, you'll
probably have to write the protocol handler yourself.
@@ -221,7 +221,7 @@ handler and Opts is protocol options defined when starting the listener.
Anything you do past this point is up to you!
You should definitely look at the cowboy_http_protocol module for a great
-example of fast requests handling if you need to. Otherwise it's probably
+example of fast request handling if you need to. Otherwise it's probably
safe to use `{active, once}` mode and handle everything as it comes.
Note that while you technically can run a protocol handler directly as a
@@ -229,5 +229,5 @@ gen_server or a gen_fsm, it's probably not a good idea, as the only call
you'll ever receive from Cowboy is the start_link/3 call. On the other
hand, feel free to write a very basic protocol handler which then forwards
requests to a gen_server or gen_fsm. By doing so however you must take
-care to supervise their processes as Cowboy only know about the protocol
+care to supervise their processes as Cowboy only knows about the protocol
handler itself.