From: Yury Shevchenko Date: Fri, 20 Jan 2023 03:06:19 +0000 (-0800) Subject: Fix documentation typo (#11077) X-Git-Tag: v4.2.1~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfe8e0311bca46e43d5630e91bf82f470df3f56d;p=thirdparty%2FChart.js.git Fix documentation typo (#11077) --- diff --git a/docs/general/colors.md b/docs/general/colors.md index f2b4c8d78..a1c4eca0b 100644 --- a/docs/general/colors.md +++ b/docs/general/colors.md @@ -110,7 +110,7 @@ You can specify the color as a string in either of the following notations: | Notation | Example | Example with transparency | -------- | ------- | ------------------------- -| [Hexademical](https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color) | `#36A2EB` | `#36A2EB80` +| [Hexadecimal](https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color) | `#36A2EB` | `#36A2EB80` | [RGB](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb) or [RGBA](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgba) | `rgb(54, 162, 235)` | `rgba(54, 162, 235, 0.5)` | [HSL](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsl) or [HSLA](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsla) | `hsl(204, 82%, 57%)` | `hsla(204, 82%, 57%, 0.5)`