summaryrefslogtreecommitdiff
path: root/Lib/chicken
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2014-02-23 16:52:08 +1300
committerOlly Betts <olly@survex.com>2014-02-23 17:15:22 +1300
commit2f3bf144c685585dab7d4d8ae1ae805dda0edab8 (patch)
tree611f6542d86afedc55da13999b180f5e9efe5e0c /Lib/chicken
parent894de07c3d676268cbfc83cf92e0bd6e7850e2dc (diff)
downloadswig-2f3bf144c685585dab7d4d8ae1ae805dda0edab8.tar.gz
Fix assorted comment and documentation typos
Diffstat (limited to 'Lib/chicken')
-rw-r--r--Lib/chicken/chickenrun.swg4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/chicken/chickenrun.swg b/Lib/chicken/chickenrun.swg
index 07db41945..f13400181 100644
--- a/Lib/chicken/chickenrun.swg
+++ b/Lib/chicken/chickenrun.swg
@@ -313,7 +313,7 @@ SWIG_Chicken_GetModule(void *SWIGUNUSEDPARM(clientdata)) {
swig_module_info *ret = 0;
C_word sym;
- /* lookup the type pointer... it is stored in it's own symbol table */
+ /* lookup the type pointer... it is stored in its own symbol table */
C_SYMBOL_TABLE *stable = C_find_symbol_table("swig_runtime_data" SWIG_RUNTIME_VERSION);
if (stable != NULL) {
sym = SWIG_Chicken_LookupSymbol(chicken_runtimevar_name, stable);
@@ -333,7 +333,7 @@ SWIG_Chicken_SetModule(swig_module_info *module) {
C_word pointer;
static C_word *space = 0;
- /* type pointer is stored in it's own symbol table */
+ /* type pointer is stored in its own symbol table */
stable = C_find_symbol_table("swig_runtime_data" SWIG_RUNTIME_VERSION);
if (stable == NULL) {
stable = C_new_symbol_table("swig_runtime_data" SWIG_RUNTIME_VERSION, 16);