8000 Fixed typo hexidecimal -> hexadecimal by agcolom · Pull Request #122 · jsdoc/jsdoc.github.io · GitHub
[go: up one dir, main page]

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions howto-es2015-modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ <h2 id="exported-values">Exported values</h2>

/**
* 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) {}
Expand All @@ -79,7 +79,7 @@ <h2 id="exported-values">Exported values</h2>
/**
* 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.<number>} An array of the red, green, and blue values,
* each ranging from 0 to 255.
*/
Expand Down Expand Up @@ -111,4 +111,4 @@ <h2 id="related-links">Related Links</h2>
</script>
</body>

</html>
</html>
0