aboutsummaryrefslogtreecommitdiff
path: root/Source/CParse/parser.y
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-05-14 11:00:52 -0400
committerluz paz <luzpaz@users.noreply.github.com>2018-05-17 10:04:23 -0400
commit60dfa31a67601f25a3ca171ae7d2503a46e0ec03 (patch)
treedc18e5f0bbd4b97bd3b562149408fa8212b0f598 /Source/CParse/parser.y
parent3eb41c9beb4b420bc58b9c2b97316f35dc3be7be (diff)
downloadswig-60dfa31a67601f25a3ca171ae7d2503a46e0ec03.tar.gz
Misc. typos
found via `codespell` and `grep`
Diffstat (limited to 'Source/CParse/parser.y')
-rw-r--r--Source/CParse/parser.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CParse/parser.y b/Source/CParse/parser.y
index cae20eb3f..fc0d983fa 100644
--- a/Source/CParse/parser.y
+++ b/Source/CParse/parser.y
@@ -512,7 +512,7 @@ static void add_symbols(Node *n) {
SetFlag(n, "feature:ignore");
}
if (!GetFlag(n, "feature:ignore") && Strcmp(symname,"$ignore") == 0) {
- /* Add feature:ignore if the symbol was explicitely ignored, regardless of visibility */
+ /* Add feature:ignore if the symbol was explicitly ignored, regardless of visibility */
SetFlag(n, "feature:ignore");
}
} else {
@@ -3789,7 +3789,7 @@ cpp_class_decl : storage_class cpptype idcolon inherit LBRACE {
if ($9) {
appendSibling($$, $9);
}
- } else if (!SwigType_istemplate(ty) && template_parameters == 0) { /* for tempalte we need the class itself */
+ } else if (!SwigType_istemplate(ty) && template_parameters == 0) { /* for template we need the class itself */
$$ = $9;
}
} else {