@@ -466,7 +466,7 @@ function assertArgCount(args, minArgCount, maxArgCount) {
466466//-----------------------------------------------------------------------------
467467// assertParamPropBool()
468468//
469- // Asserts that the property value of a parmeter is a boolean value (or
469+ // Asserts that the property value of a parameter is a boolean value (or
470470// undefined).
471471//-----------------------------------------------------------------------------
472472function assertParamPropBool ( obj , parameterNum , propName ) {
@@ -479,7 +479,7 @@ function assertParamPropBool(obj, parameterNum, propName) {
479479//-----------------------------------------------------------------------------
480480// assertParamPropFunction()
481481//
482- // Asserts that the property value of a parmeter is a function (or undefined).
482+ // Asserts that the property value of a parameter is a function (or undefined).
483483//-----------------------------------------------------------------------------
484484function assertParamPropFunction ( obj , parameterNum , propName ) {
485485 if ( obj [ propName ] !== undefined ) {
@@ -491,7 +491,7 @@ function assertParamPropFunction(obj, parameterNum, propName) {
491491//-----------------------------------------------------------------------------
492492// assertParamPropInt()
493493//
494- // Asserts that the property value of a parmeter is an integer value (or
494+ // Asserts that the property value of a parameter is an integer value (or
495495// undefined).
496496//-----------------------------------------------------------------------------
497497function assertParamPropInt ( obj , parameterNum , propName ) {
@@ -504,7 +504,7 @@ function assertParamPropInt(obj, parameterNum, propName) {
504504//-----------------------------------------------------------------------------
505505// assertParamPropUnsignedInt()
506506//
507- // Asserts that the property value of a parmeter is a positive integer value
507+ // Asserts that the property value of a parameter is a positive integer value
508508// (or undefined).
509509//-----------------------------------------------------------------------------
510510function assertParamPropUnsignedInt ( obj , parameterNum , propName ) {
@@ -517,7 +517,7 @@ function assertParamPropUnsignedInt(obj, parameterNum, propName) {
517517//-----------------------------------------------------------------------------
518518// assertParamPropString()
519519//
520- // Asserts that the property value of a parmeter is a function (or undefined).
520+ // Asserts that the property value of a parameter is a string value (or undefined).
521521//-----------------------------------------------------------------------------
522522function assertParamPropString ( obj , parameterNum , propName ) {
523523 if ( obj [ propName ] !== undefined ) {
@@ -529,7 +529,7 @@ function assertParamPropString(obj, parameterNum, propName) {
529529//-----------------------------------------------------------------------------
530530// assertParamPropValue()
531531//
532- // Asserts that the property value of a parmeter passes the specified
532+ // Asserts that the property value of a parameter passes the specified
533533// condition.
534534//-----------------------------------------------------------------------------
535535function assertParamPropValue ( condition , parameterNum , propName ) {
@@ -540,7 +540,7 @@ function assertParamPropValue(condition, parameterNum, propName) {
540540//-----------------------------------------------------------------------------
541541// assertParamValue()
542542//
543- // Asserts that the parmeter value passes the specified condition.
543+ // Asserts that the parameter value passes the specified condition.
544544//-----------------------------------------------------------------------------
545545function assertParamValue ( condition , parameterNum ) {
546546 assert ( condition , ERR_INVALID_PARAMETER_VALUE , parameterNum ) ;
0 commit comments