Skip to content

Commit

Permalink
Merge pull request #4686 from Rotzbua/fix_typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
knolleary committed May 13, 2024
2 parents 0e0bba2 + aa372a1 commit e55ebde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ declare namespace RED {
*/
function compareObjects(obj1: any, obj2: any): boolean;
/**
* Generates a psuedo-unique-random id.
* Generates a pseudo-unique-random id.
* @return {string} a random-ish id
* @memberof @node-red/util_util
*/
Expand Down
4 changes: 2 additions & 2 deletions packages/node_modules/@node-red/util/lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const util = require("util");
const { hasOwnProperty } = Object.prototype;
const log = require("./log")
/**
* Safely returns the object construtor name.
* Safely returns the object constructor name.
* @return {String} the name of the object constructor if it exists, empty string otherwise.
*/
function constructorName(obj) {
Expand All @@ -37,7 +37,7 @@ function constructorName(obj) {
}

/**
* Generates a psuedo-unique-random id.
* Generates a pseudo-unique-random id.
* @return {String} a random-ish id
* @memberof @node-red/util_util
*/
Expand Down

0 comments on commit e55ebde

Please sign in to comment.