@@ -210,7 +210,7 @@ module, and `require("elife")` will try to load the library found in
210210`node_modules/elife/`. A common way to install such libraries is by
211211using NMP, which I will discuss in a moment.
212212
213- To illustrate the use of `require`, let us set up a simple project
213+ To illustrate the use of `require`, let's set up a simple project
214214consisting of two files. The first one is called `main.js`, which
215215defines a script that can be called from the command line to garble a
216216string.
@@ -537,7 +537,7 @@ document when the `"end"` event occurs.
537537A file can be read as a readable stream by using the
538538`fs.createReadStream` function.
539539
540- Let us set up a server that reads request bodies, and streams them
540+ Let's set up a server that reads request bodies, and streams them
541541back to the client as all-uppercase text.
542542
543543[source,javascript]
@@ -585,7 +585,7 @@ using `console.log` would cause undesirable line breaks in the output.
585585
586586== A simple file server ==
587587
588- Let us combine our newfound knowledge about HTTP servers and talking
588+ Let's combine our newfound knowledge about HTTP servers and talking
589589to the file system, and create a bridge between them: an HTTP server
590590that allows remote access to a file system. Such a server has many
591591uses—it could be used by a web application to store data, or even to
0 commit comments