From 79d5448abbdd1ede417bc80285226a7f0dbe212c Mon Sep 17 00:00:00 2001 From: Marcin Wojdyr Date: Wed, 21 Feb 2024 17:23:15 +0100 Subject: [PATCH] fix typo in embind.js (closes #21372) nonexistant ==> nonexistent --- src/embind/embind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/embind/embind.js b/src/embind/embind.js index 4be33d707b4c3..44296c9de684b 100644 --- a/src/embind/embind.js +++ b/src/embind/embind.js @@ -150,7 +150,7 @@ var LibraryEmbind = { $replacePublicSymbol__docs: '/** @param {number=} numArguments */', $replacePublicSymbol: (name, value, numArguments) => { if (!Module.hasOwnProperty(name)) { - throwInternalError('Replacing nonexistant public symbol'); + throwInternalError('Replacing nonexistent public symbol'); } // If there's an overload table for this symbol, replace the symbol in the overload table instead. if (undefined !== Module[name].overloadTable && undefined !== numArguments) {