Skip to content

Commit 97fc780

Browse files
committed
Minor grammar and terminology fixes
Minor grammar and terminology fixes (found via https://textlint.github.io/)
1 parent 6f8ac70 commit 97fc780

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Choose one of the following options:
5858
* Using our new [Template Repository](https://github.com/h5bp/html5-boilerplate-template)
5959
create a new GitHub repository based on the latest code from the main branch of HTML5
6060
Boilerplate.
61-
61+
6262
* Install with [npm](https://www.npmjs.com/): `npm install html5-boilerplate`
6363
or [yarn](https://yarnpkg.com/): `yarn add html5-boilerplate`. The resulting
6464
`node_modules/html5-boilerplate/dist` folder represents the latest version of
@@ -71,7 +71,7 @@ Choose one of the following options:
7171
[html5boilerplate.com](https://html5boilerplate.com/). This zip file is a
7272
snapshot of the `dist` folder. On Windows, Mac and from the file manager on
7373
Linux unzipping this folder will output to a folder named something like
74-
`html5-boilerplate_v7.3.0`. From the command line will need to create a
74+
`html5-boilerplate_v7.3.0`. From the command-line will need to create a
7575
folder and unzip the contents into that folder.
7676

7777
```bash

docs/extend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ request.
5555
### Implicit prefetches
5656

5757
There is a lot of prefetching done for you automatically by the browser. When
58-
the browser encounters an anchor in your html that does not share the same
58+
the browser encounters an anchor in your HTML that does not share the same
5959
domain name as the current location the browser requests, from the client OS,
6060
the IP address for this new domain. The client first checks its cache and then,
6161
lacking a cached copy, makes a request from a DNS server. These requests happen
@@ -69,7 +69,7 @@ is increased on a mobile platform where DNS latency can be greater.
6969
### Explicit prefetches
7070

7171
Typically the browser only scans the HTML for foreign domains. If you have
72-
resources that are outside of your HTML (a javascript request to a remote server
72+
resources that are outside of your HTML (a JavaScript request to a remote server
7373
or a CDN that hosts content that may not be present on every page of your site,
7474
for example) then you can queue up a domain name to be prefetched.
7575

docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ changes, but you'll have to assess the costs/benefits of doing so.
1717
## Where can I get help with support questions?
1818

1919
Please ask for help on
20-
[StackOverflow](https://stackoverflow.com/questions/tagged/html5boilerplate).
20+
[Stack Overflow](https://stackoverflow.com/questions/tagged/html5boilerplate).

docs/js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ That's cool.
1313

1414
## vendor
1515

16-
This directory can be used to contain all 3rd party library code.
16+
This directory can be used to contain all third-party library code.
1717

1818
Our custom build of the Modernizr library is included by
1919
default. You may wish to create your own [custom Modernizr build with the online

docs/misc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,17 @@ if you're interested. The fields we provide are as follows:
9292
to npm, then the name needs to follow [certain guidelines](https://docs.npmjs.com/files/package.json#name)
9393
and be unique.
9494
* `version` - indicates the version of your site application using semantic
95-
versioning ([semver](https://docs.npmjs.com/misc/semver))
95+
versioning ([SemVer](https://semver.org/))
9696
* `description` - describes your site.
9797
* `scripts` - is a JavaScript object containing commands that can be run in a
9898
node environment. There are many [built-in keys](https://docs.npmjs.com/misc/scripts)
9999
related to the package lifecycle that node understands automatically. You can
100100
also define custom scripts for use with your application development. We
101-
provide three custom scripts that work with WebPack to get you up and running
101+
provide three custom scripts that work with webpack to get you up and running
102102
quickly with a bundler for your assets and a simple development server.
103103

104104
* `start` serves your `index.html` with a simple development server
105-
105+
106106
* `keywords` - an array of keywords used to discover your app in the npm
107107
registry
108108
* `author` - defines the author of a package. There is also an alternative
@@ -111,4 +111,4 @@ if you're interested. The fields we provide are as follows:
111111
* `license` - the license for your application. Must conform to
112112
[specific rules](https://docs.npmjs.com/files/package.json#license)
113113
* `devDependencies` - development dependencies for your package. In our case
114-
we have several dependencies used by WebPack, which we use as a simple development server.
114+
we have several dependencies used by webpack, which we use as a simple development server.

0 commit comments

Comments
 (0)