From 6b357a59654705c6f666149a52746877fc2a328b Mon Sep 17 00:00:00 2001 From: Rich <55961065+rvrvrv@users.noreply.github.com> Date: Wed, 19 Oct 2022 07:02:20 -0500 Subject: [PATCH] docs: Fix typos (#10809) * Spell "corresponding" correctly * Spell "circle" correctly * Spell "configuration" correctly --- docs/configuration/legend.md | 2 +- docs/samples/line/point-styling.md | 2 +- docs/samples/scale-options/grid.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration/legend.md b/docs/configuration/legend.md index 3438c16c0..cda19e885 100644 --- a/docs/configuration/legend.md +++ b/docs/configuration/legend.md @@ -67,7 +67,7 @@ Namespace: `options.plugins.legend.labels` | `textAlign` | `string` | `'center'` | Horizontal alignment of the label text. Options are: `'left'`, `'right'` or `'center'`. | `usePointStyle` | `boolean` | `false` | Label style will match corresponding point style (size is based on pointStyleWidth or the minimum value between boxWidth and font.size). | `pointStyleWidth` | `number` | `null` | If `usePointStyle` is true, the width of the point style used for the legend. -| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match coresponding borderRadius. +| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match corresponding borderRadius. | `borderRadius` | `number` | `undefined` | Override the borderRadius to use. ## Legend Title Configuration diff --git a/docs/samples/line/point-styling.md b/docs/samples/line/point-styling.md index 717a589a4..22f63b3f1 100644 --- a/docs/samples/line/point-styling.md +++ b/docs/samples/line/point-styling.md @@ -7,7 +7,7 @@ const actions = [ name: 'pointStyle: circle (default)', handler: (chart) => { chart.data.datasets.forEach(dataset => { - dataset.pointStyle = 'cirlce'; + dataset.pointStyle = 'circle'; }); chart.update(); } diff --git a/docs/samples/scale-options/grid.md b/docs/samples/scale-options/grid.md index ff56f2cc8..487a1659c 100644 --- a/docs/samples/scale-options/grid.md +++ b/docs/samples/scale-options/grid.md @@ -42,7 +42,7 @@ const data = { // // Change these settings to change the display for different parts of the X axis -// grid configuiration +// grid configuration const DISPLAY = true; const BORDER = true; const CHART_AREA = true;