diff --git a/build/jsdoc-toolkit b/build/jsdoc-toolkit index f2224b74..3611eb9a 160000 --- a/build/jsdoc-toolkit +++ b/build/jsdoc-toolkit @@ -1 +1 @@ -Subproject commit f2224b7437812263c2fb071c71fb1d0a59c2e15b +Subproject commit 3611eb9a23a4d55f15271811afe4bebcfeee6fe9 diff --git a/src/style/Color.js b/src/style/Color.js index a0f2a5af..3569365a 100644 --- a/src/style/Color.js +++ b/src/style/Color.js @@ -797,7 +797,7 @@ var Color = Base.extend(new function() { /** * Returns the color as a CSS string. * - * @param {Boolean} hex whether to return the color in hexadecial + * @param {Boolean} hex whether to return the color in hexadecimal * representation or as a CSS RGB / RGBA string. * @return {String} a CSS string representation of the color */ diff --git a/src/util/Numerical.js b/src/util/Numerical.js index a401b427..eb0e953c 100644 --- a/src/util/Numerical.js +++ b/src/util/Numerical.js @@ -211,7 +211,7 @@ var Numerical = new function() { * @return {Number} the number of real roots found, or -1 if there are * infinite solutions * - * @author Harikrishnan Gopalakrishnan + * @author Harikrishnan Gopalakrishnan */ solveQuadratic: function(a, b, c, roots, min, max) { var count = 0, @@ -298,7 +298,7 @@ var Numerical = new function() { * @return {Number} the number of real roots found, or -1 if there are * infinite solutions * - * @author Harikrishnan Gopalakrishnan + * @author Harikrishnan Gopalakrishnan */ solveCubic: function(a, b, c, d, roots, min, max) { var count = 0,