diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-09 00:49:23 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-09 00:49:23 +0000 |
commit | 0f3e6b84e45a66268be6c46ce28864de5ba420fa (patch) | |
tree | ac93aa592c8b35484909498d0a561ede8e6f2ec1 /ext | |
parent | f09461f82450ad0d4cd199f3502443a82b2d2de5 (diff) | |
download | ruby-0f3e6b84e45a66268be6c46ce28864de5ba420fa.tar.gz ruby-0f3e6b84e45a66268be6c46ce28864de5ba420fa.tar.xz ruby-0f3e6b84e45a66268be6c46ce28864de5ba420fa.zip |
* typo
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/tk/sample/tkalignbox.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/sample/tkalignbox.rb b/ext/tk/sample/tkalignbox.rb index 9936929e3..cca91c9b0 100644 --- a/ext/tk/sample/tkalignbox.rb +++ b/ext/tk/sample/tkalignbox.rb @@ -20,12 +20,12 @@ class TkAlignBox < TkFrame end def _set_framesize - fail RuntimeError, "TkAlignBox is an abstruct class" + fail RuntimeError, "TkAlignBox is an abstract class" end private :_set_framesize def _place_config(widget, idx, cnt) - fail RuntimeError, "TkAlignBox is an abstruct class" + fail RuntimeError, "TkAlignBox is an abstract class" end private :_place_config |