diff --git a/docs/00-Getting-Started.md b/docs/00-Getting-Started.md index 414a7d4f4..c64c0c840 100644 --- a/docs/00-Getting-Started.md +++ b/docs/00-Getting-Started.md @@ -11,7 +11,7 @@ First we need to include the Chart.js library on the page. The library occupies ``` -Alternatively, if you're using an AMD loader for javascript modules, that is also supported in the Chart.js core. Please note: the library will still occupy a global variable of `Chart`, even if it detects `define` and `define.amd`. If this is a problem, you can call `noConflict` to restore the global Chart variable to it's previous owner. +Alternatively, if you're using an AMD loader for JavaScript modules, that is also supported in the Chart.js core. Please note: the library will still occupy a global variable of `Chart`, even if it detects `define` and `define.amd`. If this is a problem, you can call `noConflict` to restore the global Chart variable to it's previous owner. ```javascript // Using requirejs diff --git a/docs/06-Advanced.md b/docs/06-Advanced.md index 906efb500..f1e0e0474 100644 --- a/docs/06-Advanced.md +++ b/docs/06-Advanced.md @@ -122,7 +122,7 @@ new Chart(ctx).LineAlt(data); ### Creating custom builds -Chart.js uses gulp to build the library into a single javascript file. We can use this same build script with custom parameters in order to build a custom version. +Chart.js uses gulp to build the library into a single JavaScript file. We can use this same build script with custom parameters in order to build a custom version. Firstly, we need to ensure development dependencies are installed. With node and npm installed, after cloning the Chart.js repo to a local directory, and navigating to that directory in the command line, we can run the following: @@ -131,7 +131,7 @@ npm install npm install -g gulp ``` -This will install the local development dependencies for Chart.js, along with a CLI for the javascript task runner gulp. +This will install the local development dependencies for Chart.js, along with a CLI for the JavaScript task runner gulp. Now, we can run the `gulp build` task, and pass in a comma seperated list of types as an argument to build a custom version of Chart.js with only specified chart types. diff --git a/docs/07-Notes.md b/docs/07-Notes.md index f4bb5afe2..8ba5a59dd 100644 --- a/docs/07-Notes.md +++ b/docs/07-Notes.md @@ -26,7 +26,7 @@ Some important points to note in my experience using ExplorerCanvas as a fallbac ### Bugs & issues -Please report these on the Github page - at github.com/nnnick/Chart.js. If you could include a link to a simple jsbin or similar to demonstrate the issue, that'd be really helpful. +Please report these on the GitHub page - at github.com/nnnick/Chart.js. If you could include a link to a simple jsbin or similar to demonstrate the issue, that'd be really helpful. ### Contributing