diff options
author | Loïc Hoguin <[email protected]> | 2013-01-21 09:03:14 -0800 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-01-21 09:03:14 -0800 |
commit | fe462599c2c94ab01d3aa4aab383021b673596a2 (patch) | |
tree | 775b059a4dda2ce129bc916d95c54b42eed6b4f9 | |
parent | 81cfc1651e708261e17242efb353259f6bad8182 (diff) | |
parent | dbecfcc3db7ca07532333a8169cf64c1e2625167 (diff) | |
download | cowboy-fe462599c2c94ab01d3aa4aab383021b673596a2.tar.gz cowboy-fe462599c2c94ab01d3aa4aab383021b673596a2.tar.bz2 cowboy-fe462599c2c94ab01d3aa4aab383021b673596a2.zip |
Merge pull request #369 from rramsden/patch-1
Fix typo in the guide introduction
-rw-r--r-- | guide/introduction.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guide/introduction.md b/guide/introduction.md index a8563fb..f1fd18e 100644 --- a/guide/introduction.md +++ b/guide/introduction.md @@ -110,5 +110,5 @@ terminate(Req, State) -> ``` The `Req` variable above is the Req object, which allows the developer -to obtain informations about the request and to perform a reply. Its usage +to obtain information about the request and to perform a reply. Its usage is explained in its respective section of the guide. |