]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Typos fix (#6924)
authorElina Gorshkova <52108095+elinagorshkova@users.noreply.github.com>
Mon, 6 Jan 2020 23:07:08 +0000 (18:07 -0500)
committerEvert Timberg <evert.timberg+github@gmail.com>
Mon, 6 Jan 2020 23:07:08 +0000 (18:07 -0500)
* Fixed spelling typo

Changed 'are know' to 'are known'

* Fix spelling in the docs

Added a missing comma

* Fix spelling in the docs

Added a missing comma

docs/axes/README.md
docs/getting-started/usage.md
docs/getting-started/v3-migration.md

index c91b9d220f74c3134a65da72bdbf25036bcfcdc1..916ec03bc339a547f1718ec2195bbfe7e28c8b61 100644 (file)
@@ -1,6 +1,6 @@
 # Axes
 
-Axes are an integral part of a chart. They are used to determine how data maps to a pixel value on the chart. In a cartesian chart, there is 1 or more X axis and 1 or more Y axis to map points onto the 2 dimensional canvas. These axes are know as ['cartesian axes'](./cartesian/README.md#cartesian-axes).
+Axes are an integral part of a chart. They are used to determine how data maps to a pixel value on the chart. In a cartesian chart, there is 1 or more X axis and 1 or more Y axis to map points onto the 2 dimensional canvas. These axes are known as ['cartesian axes'](./cartesian/README.md#cartesian-axes).
 
 In a radial chart, such as a radar chart or a polar area chart, there is a single axis that maps points in the angular and radial directions. These are known as ['radial axes'](./radial/README.md#radial-axes).
 
index 6da1290ca347ba1dbd9d57363371b1c1df900156..9353436a83308966eb1364c87d710bbe16484b36 100644 (file)
@@ -1,5 +1,5 @@
 # Usage
-Chart.js can be used with ES6 modules, plain JavaScript and module loaders.
+Chart.js can be used with ES6 modules, plain JavaScript, and module loaders.
 
 ## Creating a Chart
 
index 6a865edce2e3298ef11b2b36b4b3b9f1d126447c..8ceb8fb01cf858aa70466fcd73383dafd5560cdf 100644 (file)
@@ -1,6 +1,6 @@
 # Chart.js 3.x Migration Guide
 
-Chart.js 3.0 introduces a number of breaking changes. Chart.js 2.0 was released in April 2016. In the years since then, as Chart.js has grown in popularity and feature set, we've learned some lessons about how to better create a charting library. In order to improve performance, offer new features, and improve maintainability it was necessary to break backwards compatibility, but we aimed to do so only when necessary.
+Chart.js 3.0 introduces a number of breaking changes. Chart.js 2.0 was released in April 2016. In the years since then, as Chart.js has grown in popularity and feature set, we've learned some lessons about how to better create a charting library. In order to improve performance, offer new features, and improve maintainability, it was necessary to break backwards compatibility, but we aimed to do so only when necessary.
 
 ## End user migration