Minor grammar and terminology fixes

Minor grammar and terminology fixes (found via https://textlint.github.io/)
This commit is contained in:
Christian Oliff
2022-10-04 20:14:22 +09:00
parent 6f8ac7034c
commit 97fc780b52
5 changed files with 10 additions and 10 deletions

View File

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

View File

@@ -55,7 +55,7 @@ request.
### Implicit prefetches
There is a lot of prefetching done for you automatically by the browser. When
the browser encounters an anchor in your html that does not share the same
the browser encounters an anchor in your HTML that does not share the same
domain name as the current location the browser requests, from the client OS,
the IP address for this new domain. The client first checks its cache and then,
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.
### Explicit prefetches
Typically the browser only scans the HTML for foreign domains. If you have
resources that are outside of your HTML (a javascript request to a remote server
resources that are outside of your HTML (a JavaScript request to a remote server
or a CDN that hosts content that may not be present on every page of your site,
for example) then you can queue up a domain name to be prefetched.

View File

@@ -17,4 +17,4 @@ changes, but you'll have to assess the costs/benefits of doing so.
## Where can I get help with support questions?
Please ask for help on
[StackOverflow](https://stackoverflow.com/questions/tagged/html5boilerplate).
[Stack Overflow](https://stackoverflow.com/questions/tagged/html5boilerplate).

View File

@@ -13,7 +13,7 @@ That's cool.
## vendor
This directory can be used to contain all 3rd party library code.
This directory can be used to contain all third-party library code.
Our custom build of the Modernizr library is included by
default. You may wish to create your own [custom Modernizr build with the online

View File

@@ -92,17 +92,17 @@ if you're interested. The fields we provide are as follows:
to npm, then the name needs to follow [certain guidelines](https://docs.npmjs.com/files/package.json#name)
and be unique.
* `version` - indicates the version of your site application using semantic
versioning ([semver](https://docs.npmjs.com/misc/semver))
versioning ([SemVer](https://semver.org/))
* `description` - describes your site.
* `scripts` - is a JavaScript object containing commands that can be run in a
node environment. There are many [built-in keys](https://docs.npmjs.com/misc/scripts)
related to the package lifecycle that node understands automatically. You can
also define custom scripts for use with your application development. We
provide three custom scripts that work with WebPack to get you up and running
provide three custom scripts that work with webpack to get you up and running
quickly with a bundler for your assets and a simple development server.
* `start` serves your `index.html` with a simple development server
* `keywords` - an array of keywords used to discover your app in the npm
registry
* `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:
* `license` - the license for your application. Must conform to
[specific rules](https://docs.npmjs.com/files/package.json#license)
* `devDependencies` - development dependencies for your package. In our case
we have several dependencies used by WebPack, which we use as a simple development server.
we have several dependencies used by webpack, which we use as a simple development server.