mirror of
https://github.com/h5bp/html5-boilerplate.git
synced 2026-01-09 14:48:02 -05:00
Minor grammar and terminology fixes
Minor grammar and terminology fixes (found via https://textlint.github.io/)
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
@@ -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).
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user