Skip to content

Commit

Permalink
fix typo in embind.js (closes emscripten-core#21372)
Browse files Browse the repository at this point in the history
nonexistant ==> nonexistent
  • Loading branch information
wojdyr committed Feb 21, 2024
1 parent 3319a31 commit 79d5448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/embind/embind.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 79d5448

Please sign in to comment.