Skip to content

Commit 1b0a9cc

Browse files
committed
Typo fixes
1 parent 9b131a0 commit 1b0a9cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/CParse/parser.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1863,7 +1863,7 @@ extend_directive : EXTEND options classkeyopt idcolon LBRACE {
18631863
} else {
18641864
/* Previous typedef class definition. Use its symbol table.
18651865
Deprecated, just the real name should be used.
1866-
Note that %extend before the class typedef never worked, only %extend after the class typdef. */
1866+
Note that %extend before the class typedef never worked, only %extend after the class typedef. */
18671867
prev_symtab = Swig_symbol_setscope(Getattr(cls, "symtab"));
18681868
current_class = cls;
18691869
SWIG_WARN_NODE_BEGIN(cls);

Source/Modules/javascript.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ int JSEmitter::emitConstant(Node *n) {
11431143
String *rawval = Getattr(n, "rawval");
11441144
String *value = rawval ? rawval : Getattr(n, "value");
11451145

1146-
// HACK: forcing usage of cppvalue for v8 (which turned out to fix typdef_struct.i, et. al)
1146+
// HACK: forcing usage of cppvalue for v8 (which turned out to fix typedef_struct.i, et. al)
11471147
if (State::IsSet(state.globals(FORCE_CPP)) && Getattr(n, "cppvalue") != NULL) {
11481148
value = Getattr(n, "cppvalue");
11491149
}

0 commit comments

Comments
 (0)