Skip to content

Commit ba8183c

Browse files
committed
minor style fixes
1 parent 3e616d5 commit ba8183c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

_posts/2016-01-01-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ To install a tutorial, setup a *package.json* file and save the tutorial as a de
3333

3434
![Install a Tutorial](/img/gif/install-tutorial.png){: .gif}
3535

36-
You can setup a project quickly by typing `npm init --y` into the command line in your project's folder. This agrees to all of the defaults for your newly created *package.json* file.
36+
You can setup a project quickly by typing `> npm init --y` into the command line in your project's folder. This agrees to all of the defaults for your newly created *package.json* file.
3737

38-
Now you can install a tutorial. Run `npm install --save-dev $THE-PACKAGE-NAME$` to save the tutorial as a package development dependency. If you run *Atom-CodeRoad* you should see the tutorial appear on the first screen.
38+
Now you can install a tutorial. Run `> npm install --save-dev $THE-PACKAGE-NAME$` to save the tutorial as a package development dependency. If you run *Atom-CodeRoad* you should see the tutorial appear on the first screen.
3939

4040

4141
### CodeRoad-CLI

_posts/2016-01-02-development.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ In your development directory, run **create** with your new package name.
1515

1616
Running **create** generates:
1717

18-
* an example `tutorial.md`, which imports several tutorial files
19-
* an example `test` directory with a few example tests
20-
* a `package.json` configuration with some of the following settings:
18+
* an example **tutorial.md**, which imports several tutorial files
19+
* an example **test** directory with a few example tests
20+
* a **package.json** configuration with some of the following settings:
2121

2222
```json
2323
{
@@ -60,7 +60,7 @@ Add your package name to the `dependencies` in `package.json`:
6060
}
6161
```
6262

63-
Normally you would use `npm install` to install the package, but your package isn't ready to be published yet. Instead, you need to link your tutorial package to your demo directory.
63+
Normally you would use `> npm install` to install the package, but your package isn't ready to be published yet. Instead, you need to link your tutorial package to your demo directory.
6464

6565
### Link Your Demo & Tutorial
6666

0 commit comments

Comments
 (0)