Skip to content

Commit

Permalink
Merge pull request manuelkiessling#19 from gurjeet/master
Browse files Browse the repository at this point in the history
Grammar check.
  • Loading branch information
manuelkiessling committed Jun 28, 2012
2 parents 90ac210 + f7305ff commit a482066
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Expand Up @@ -1861,7 +1861,7 @@ <h3>Routing to real request handlers</h3>

<p>
What we do here is, we check if a request handler for the given
pathname exists, and if it does, we simply call the according
pathname exists, and if it does, we simply call the corresponding
function. Because we can access our request handler functions
from our object just as we would access an element of an
associative array, we have this nice fluent
Expand Down Expand Up @@ -2154,7 +2154,7 @@ <h4>Blocking and non-blocking</h4>
What you will notice is this: The /start URL takes 10 seconds
to load, as we would expect. But the /upload URL <em>also</em>
takes 10 seconds to load, although there is no <em>sleep()</em>
in the according request handler.
in the corrsponding request handler.
</p>

<p>
Expand Down Expand Up @@ -2551,7 +2551,7 @@ <h4>Responding request handlers with non-blocking operations</h4>

<p>
This will make HTTP requests to <a href="http://localhost:8888/start" rel="nofollow">http://localhost:8888/start</a>
take at least 10 seconds, but requests to <a href="http://localhost:8888/upload" rel="nofollow">http://localhost:8888/upload</a>
take at most 10 seconds, but requests to <a href="http://localhost:8888/upload" rel="nofollow">http://localhost:8888/upload</a>
will be answered immediately, even if /start is still
computing.
</p>
Expand Down Expand Up @@ -3028,7 +3028,7 @@ <h4>Handling file uploads</h4>
</p>

<p>
In order to make use of Felix' code, the according Node.js
In order to make use of Felix' code, the corresponding Node.js
module needs to be installed. Node.js ships with its own
package manager, dubbed <em>NPM</em>. It allows us to install
external Node.js modules in a very convenient fashion. Given a
Expand Down

0 comments on commit a482066

Please sign in to comment.