From 946c0268c7a64a0c394897cc1715d4b4d27e696c Mon Sep 17 00:00:00 2001 From: Anne-Gaelle Colom Date: Thu, 7 Jan 2016 15:22:52 +0000 Subject: [PATCH] Fixed typo hexidecimal -> hexadecimal --- howto-es2015-modules.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/howto-es2015-modules.html b/howto-es2015-modules.html index 9fd8525b..990a1989 100644 --- a/howto-es2015-modules.html +++ b/howto-es2015-modules.html @@ -66,8 +66,8 @@

Exported values

/** * Blend two colors together. - * @param {string} color1 - The first color, in hexidecimal format. - * @param {string} color2 - The second color, in hexidecimal format. + * @param {string} color1 - The first color, in hexadecimal format. + * @param {string} color2 - The second color, in hexadecimal format. * @return {string} The blended color. */ export function blend(color1, color2) {} @@ -79,7 +79,7 @@

Exported values

/** * Get the red, green, and blue values of a color. * @function - * @param {string} color - A color, in hexidecimal format. + * @param {string} color - A color, in hexadecimal format. * @returns {Array.} An array of the red, green, and blue values, * each ranging from 0 to 255. */ @@ -111,4 +111,4 @@ - \ No newline at end of file +