Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typographical suggestions #23970

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/api/synopsis.md
Expand Up @@ -14,7 +14,7 @@ An example of a [web server][] written with Node.js which responds with

Commands displayed in this document are shown starting with `$` or `>`
to replicate how they would appear in a user's terminal.
Do not include the `$` and `>` character they are there to
Do not include the `$` and `>` characters. They are there to
indicate the start of each command.

There are many tutorials and examples that follow this
Expand All @@ -27,8 +27,8 @@ the output of the previous command.
Firstly, make sure to have downloaded and installed Node.js.
See [this guide][] for further install information.

Now, create an empty project folder called `projects`, navigate into it:
Project folder can be named base on user's current project title but
Now, create an empty project folder called `projects`, then navigate into it.
vsemozhetbyt marked this conversation as resolved.
Show resolved Hide resolved
The project folder can be named based on the user's current project title, but
this example will use `projects` as the project folder.

Linux and Mac:
Expand Down Expand Up @@ -60,7 +60,7 @@ hyphens (`-`) or underscores (`_`) to separate
multiple words in filenames.

Open `hello-world.js` in any preferred text editor and
paste in the following content.
paste in the following content:

```js
const http = require('http');
Expand Down