diff options
author | a_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-27 09:05:57 +0000 |
---|---|---|
committer | a_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-27 09:05:57 +0000 |
commit | 0d72c6655c89a5b743f2e7d3f2727b37e50449b6 (patch) | |
tree | 9616ab1c4b939ccacd4e52ff7faf6afa2c92946e | |
parent | 9e733b909167e0ef0cf3766f3e54c9dc4e180ce8 (diff) |
* lib/irb/notifier.rb: Fix typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/irb/notifier.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Tue Nov 27 18:04:57 2013 Akira Matsuda <[email protected]> + + * lib/irb/notifier.rb: Fix typo + Wed Nov 27 17:54:57 2013 Koichi Sasada <[email protected]> * gc.c (gc_mark_stacked_objects): check only when check_mode > 0. diff --git a/lib/irb/notifier.rb b/lib/irb/notifier.rb index effb12c30d..20a5b15738 100644 --- a/lib/irb/notifier.rb +++ b/lib/irb/notifier.rb @@ -161,7 +161,7 @@ module IRB @level_notifier = value when Integer l = @notifiers[value] - Notifier.Raise ErrUndefinedNotifer, value unless l + Notifier.Raise ErrUndefinedNotifier, value unless l @level_notifier = l else Notifier.Raise ErrUnrecognizedLevel, value unless l |