Skip to content

Commit 4c2ee4a

Browse files
authored
Merge pull request jupyter#245 from slel/patch-2
Fix typos in README.md
2 parents 3ae2ed7 + e23abd7 commit 4c2ee4a

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
This is the source to [Jupyter.org](http://jupyter.org/).
66

7-
# Build instruction.
7+
# Build instructions
88

9-
The site is build using GitHub Pages Jekyll, see [Jekyll
10-
website](http://jekyllrb.com/) for customizing build process, and detail on how
11-
what where.
9+
The site is built using GitHub Pages Jekyll, see [Jekyll
10+
website](http://jekyllrb.com/) for customizing the build process, and detail on how
11+
what where.
1212

1313
# Quick local testing
1414

@@ -17,25 +17,25 @@ gem install bundler
1717
bundle install
1818
```
1919

20-
cd into the root of this directory,
20+
cd into the root of this directory,
2121

2222
```
2323
bundle exec jekyll serve --baseurl ''
2424
```
2525

26-
Open your browser to localhost:4000
26+
Open your browser to localhost:4000.
2727

28-
Edit the various part and reload at will.
28+
Edit the various parts and reload at will.
2929

30-
Enjoy
30+
Enjoy.
3131

32-
# What is where.
32+
# What is where
3333

3434
Most pages are located at the place where their URL is, nothing fancy. Headers
35-
and footer are in `_includes/head.html`, `_includes/header.html` ,
35+
and footer are in `_includes/head.html`, `_includes/header.html`,
3636
`_includes/footer.html`.
3737

38-
The **navbar** is in `_data/nav.yml` and look like that:
38+
The **navbar** is in `_data/nav.yml` and looks like that:
3939

4040
```
4141
head:
@@ -50,7 +50,7 @@ head:
5050
- Donate
5151
```
5252

53-
which mean, insert in order the following links into the navbar:
53+
which means, insert in order the following links into the navbar:
5454

5555
- Link to `Home` page, guess the url by yourself.
5656
- link to `Install` page, the url is...
@@ -60,25 +60,25 @@ which mean, insert in order the following links into the navbar:
6060
The navbar will automatically target `_blank` pages where the url is explicit,
6161
and mark the correct link as the "current" one.
6262

63-
# How do I create a new page ?
63+
# How do I create a new page?
6464

6565
Create `my_page.html` (will have url `https://jupyter.org/my_page.html`)
66-
or `my_page/index.html` (will have url `https://jupyter.org/my_page/`), start with the following :
66+
or `my_page/index.html` (will have url `https://jupyter.org/my_page/`), start with the following:
6767

6868
```
6969
---
7070
layout: default
7171
title: My Page
7272
---
7373
74-
write some html here (consider you are already inside `<body></body>`
74+
write some html here (consider you are already inside `<body></body>`)
7575
```
7676

77-
You can not do it yet with .md file, but you will be able soon.
77+
You cannot do it yet with .md file, but you will be able soon.
7878

79-
Add commit (and don't forget to add to `_data/nav.yml`
79+
Add commit (and don't forget to add to `_data/nav.yml`).
8080

81-
# Continuous Integration Testing on Travis
81+
# Continuous integration testing on Travis
8282

8383
Travis will run and test:
8484

0 commit comments

Comments
 (0)