diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-25 01:52:59 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-25 01:52:59 +0000 |
commit | 10e80b2402f7c0fd79df86767a11ba4e4b1bfa95 (patch) | |
tree | cae1ba3cb3dfd840a88863184d1bfe15c4819a10 | |
parent | 0869399cbf26c16c3226f338661da87882418ff8 (diff) |
* ext/tcltklib/stubs.c (ruby_tcltk_stubs): fix a typo in comment
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/tcltklib/stubs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tcltklib/stubs.c b/ext/tcltklib/stubs.c index faf5b4bb4b..69a5d6d3c0 100644 --- a/ext/tcltklib/stubs.c +++ b/ext/tcltklib/stubs.c @@ -47,7 +47,7 @@ ruby_tcltk_stubs() } else { snprintf(tcl_name, sizeof tcl_name, TCL_NAME, DLEXT); snprintf(tk_name, sizeof tk_name, TK_NAME, DLEXT); - /* examin from 8.9 to 8.1 */ + /* examine from 8.9 to 8.1 */ for (n = '9'; n > '0'; n--) { tcl_name[TCL_INDEX] = n; tk_name[TK_INDEX] = n; |