Skip to content

Commit 6b357a5

Browse files
authored
docs: Fix typos (#10809)
* Spell "corresponding" correctly * Spell "circle" correctly * Spell "configuration" correctly
1 parent c35d0c6 commit 6b357a5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/configuration/legend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Namespace: `options.plugins.legend.labels`
6767
| `textAlign` | `string` | `'center'` | Horizontal alignment of the label text. Options are: `'left'`, `'right'` or `'center'`.
6868
| `usePointStyle` | `boolean` | `false` | Label style will match corresponding point style (size is based on pointStyleWidth or the minimum value between boxWidth and font.size).
6969
| `pointStyleWidth` | `number` | `null` | If `usePointStyle` is true, the width of the point style used for the legend.
70-
| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match coresponding borderRadius.
70+
| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match corresponding borderRadius.
7171
| `borderRadius` | `number` | `undefined` | Override the borderRadius to use.
7272

7373
## Legend Title Configuration

docs/samples/line/point-styling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const actions = [
77
name: 'pointStyle: circle (default)',
88
handler: (chart) => {
99
chart.data.datasets.forEach(dataset => {
10-
dataset.pointStyle = 'cirlce';
10+
dataset.pointStyle = 'circle';
1111
});
1212
chart.update();
1313
}

docs/samples/scale-options/grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const data = {
4242

4343
// <block:config:0>
4444
// Change these settings to change the display for different parts of the X axis
45-
// grid configuiration
45+
// grid configuration
4646
const DISPLAY = true;
4747
const BORDER = true;
4848
const CHART_AREA = true;

0 commit comments

Comments
 (0)