From 248a09f98ec4c054fefe6d2067a0d37d0b47094b Mon Sep 17 00:00:00 2001 From: Rich Vallone Date: Tue, 18 Oct 2022 17:16:40 -0500 Subject: [PATCH 1/3] Spell "corresponding" correctly --- docs/configuration/legend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/legend.md b/docs/configuration/legend.md index 3438c16c0d5..cda19e885f9 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 From 2730035cce8ae0993214024455d99933f95279b1 Mon Sep 17 00:00:00 2001 From: Rich Vallone Date: Tue, 18 Oct 2022 17:17:03 -0500 Subject: [PATCH 2/3] Spell "circle" correctly --- docs/samples/line/point-styling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/samples/line/point-styling.md b/docs/samples/line/point-styling.md index 717a589a4bd..22f63b3f10a 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(); } From 5b56e654b61a71a13827b6c6179409929ab8493a Mon Sep 17 00:00:00 2001 From: Rich Vallone Date: Tue, 18 Oct 2022 17:18:59 -0500 Subject: [PATCH 3/3] Spell "configuration" correctly --- docs/samples/scale-options/grid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/samples/scale-options/grid.md b/docs/samples/scale-options/grid.md index ff56f2cc8c8..487a1659c05 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;