]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix documentation typo (#11077)
authorYury Shevchenko <n1313@users.noreply.github.com>
Fri, 20 Jan 2023 03:06:19 +0000 (19:06 -0800)
committerGitHub <noreply@github.com>
Fri, 20 Jan 2023 03:06:19 +0000 (05:06 +0200)
docs/general/colors.md

index f2b4c8d78423869d56e43aedcb75a74863459c56..a1c4eca0bf43e3078b09eb446d7994bd018932b9 100644 (file)
@@ -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)`