Skip to content

Commit

Permalink
term: review usage around "next" word
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeorpinel committed Jan 6, 2020
1 parent 6cbd929 commit 626e725
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ typings/
# dotenv environment variables file
.env

# next.js build output
# Next.js build output
.idea
.next/
*.log
Expand Down
2 changes: 1 addition & 1 deletion public/static/docs/get-started/connect-code-and-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ wdir: .
> [pipeline](/doc/get-started/pipeline), or in other words, instructions on how
> to build a ML model (data file) from previous data files (or directories).

We would recommend to read a few next chapters first, before switching to other
We would recommend to read a few more chapters first, before switching to other
documents. Hopefully, `dvc run` and `dvc repro` will make more sense after a few
more Get Started chapters. You can always refer to the `dvc run` and `dvc repro`
documentation to learn the specific details about how they behave and all of
Expand Down
2 changes: 1 addition & 1 deletion public/static/docs/tutorials/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ but made specifically to handle large data files.

</details>

Next stage: let's convert XML into TSV to make feature extraction easier:
Let's convert XML into TSV to make feature extraction easier:

```dvc
$ dvc run -d code/xml_to_tsv.py -d data/Posts.xml -o data/Posts.tsv \
Expand Down
2 changes: 1 addition & 1 deletion public/static/docs/user-guide/contributing/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ Tests currently only work on Linux. First you need to set up passwordless ssh
access to localhost:

```dvc
# Only run next line if you don't yet have keys
# Only run the next line if you don't yet have keys
$ ssh-keygen -t rsa -P ""
$ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
```
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ app.prepare().then(() => {
// Fire up docs engine!
app.render(req, res, '/doc', query)
} else {
// Regular Next handler
// Regular Next.js handler
handle(req, res, parsedUrl)
}
}).listen(port, err => {
Expand Down

0 comments on commit 626e725

Please sign in to comment.