Skip to content

Commit 919afc5

Browse files
authored
Fix typo in embind.js (#21384)
nonexistant ==> nonexistent Fixes: #21372
1 parent dc4e54a commit 919afc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/embind/embind.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ var LibraryEmbind = {
150150
$replacePublicSymbol__docs: '/** @param {number=} numArguments */',
151151
$replacePublicSymbol: (name, value, numArguments) => {
152152
if (!Module.hasOwnProperty(name)) {
153-
throwInternalError('Replacing nonexistant public symbol');
153+
throwInternalError('Replacing nonexistent public symbol');
154154
}
155155
// If there's an overload table for this symbol, replace the symbol in the overload table instead.
156156
if (undefined !== Module[name].overloadTable && undefined !== numArguments) {

0 commit comments

Comments
 (0)