summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2015-01-24 14:57:05 +1300
committerOlly Betts <olly@survex.com>2015-01-24 14:57:05 +1300
commit2a4317802123feeb4e9f57952283312c8308066e (patch)
treeea6fbab1e1fe2a5fca3aac104e0900b6d1a3f5ad
parent412eebd7f9ba196359ba15624e9eaffabc2fa388 (diff)
downloadswig-2a4317802123feeb4e9f57952283312c8308066e.tar.gz
Fix comment grammar
-rw-r--r--Lib/swiginit.swg4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/swiginit.swg b/Lib/swiginit.swg
index 8bbb2f964..059355a0f 100644
--- a/Lib/swiginit.swg
+++ b/Lib/swiginit.swg
@@ -86,9 +86,9 @@ SWIG_InitializeModule(void *clientdata) {
iter=iter->next;
} while (iter!= module_head);
- /* if the is found in the list, then all is done and we may leave */
+ /* if this module is already in the list, there's nothing more to do. */
if (found) return;
- /* otherwise we must add out module into the list */
+ /* otherwise we must add our module into the list */
swig_module.next = module_head->next;
module_head->next = &swig_module;
}