1
0
Fork 0

Fix typo in RestrictedDataApi error

* src/dapi/RestrictedDataApi.js (_requestParamCheck): Unknown param
  error typo fix.
master
Mike Gerwitz 2017-06-27 10:52:46 -04:00
parent 95c28d4db4
commit b3f8ed96dd
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ module.exports = Class( 'RestrictedDataApi' )
// fail on unknown params
if ( !( this._params[ name ] ) )
{
throw Error( 'Unkown param: ' + name );
throw Error( 'Unknown param: ' + name );
}
}