Fixed docstrings to have them match the function signature (name of parameters).

This commit is contained in:
Arlena Derksen 2019-10-10 14:57:19 +02:00
parent ff4d58f648
commit ca7a298509
1 changed files with 3 additions and 3 deletions

View File

@ -301,7 +301,7 @@ function normalisePropertyExpression(str) {
* front of the property expression if present.
*
* @param {Object} msg - the message object
* @param {String} str - the property expression
* @param {String} expr - the property expression
* @return {any} the message property, or undefined if it does not exist
* @memberof @node-red/util_util
*/
@ -316,7 +316,7 @@ function getMessageProperty(msg,expr) {
* Gets a property of an object.
*
* @param {Object} msg - the object
* @param {String} str - the property expression
* @param {String} expr - the property expression
* @return {any} the object property, or undefined if it does not exist
* @memberof @node-red/util_util
*/
@ -468,7 +468,7 @@ function evaluateEnvProperty(value, node) {
*
* For example, `#:(file)::foo` results in ` { store: "file", key: "foo" }`.
*
* @param {String} value - the context property string to parse
* @param {String} key - the context property string to parse
* @return {Object} The parsed property
* @memberof @node-red/util_util
*/