diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-07 05:18:57 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-07 05:18:57 +0000 |
commit | 6b35c34c6808f24f6ac8f03d99620a6406676b0e (patch) | |
tree | 73fe93fec6838a539e6fa27cae0cf4076f32c7ba /lib/irb/notifier.rb | |
parent | 87d7a06660b658da7267486f43996003abc39016 (diff) |
* basictest/test.rb: Adjust spaces in class declarations
with inheritance. [fix GH-1227] Patch by @adrfer
* lib/irb/*: ditto.
* lib/prime.rb: ditto.
* lib/shell/builtin-command.rb: ditto.
* object.c: ditto.
* sample/*.rb: ditto.
* test/-ext-/method/test_arity.rb: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb/notifier.rb')
-rw-r--r-- | lib/irb/notifier.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/irb/notifier.rb b/lib/irb/notifier.rb index 9d8de82e69..a21e865f2e 100644 --- a/lib/irb/notifier.rb +++ b/lib/irb/notifier.rb @@ -113,7 +113,7 @@ module IRB # create a new composite notifier. Using the first composite notifier # object you create, sibling notifiers can be initialized with # #def_notifier. - class CompositeNotifier<AbstractNotifier + class CompositeNotifier < AbstractNotifier # Create a new composite notifier object with the given +prefix+, and # +base_notifier+ to use for output. def initialize(prefix, base_notifier) @@ -174,7 +174,7 @@ module IRB # A leveled notifier is comparable to the composite group from # CompositeNotifier#notifiers. - class LeveledNotifier<AbstractNotifier + class LeveledNotifier < AbstractNotifier include Comparable # Create a new leveled notifier with the given +base+, and +prefix+ to @@ -212,7 +212,7 @@ module IRB # # This notifier is used as the +zero+ index, or level +0+, for # CompositeNotifier#notifiers, and will not output messages of any sort. - class NoMsgNotifier<LeveledNotifier + class NoMsgNotifier < LeveledNotifier # Creates a new notifier that should not be used to output messages. def initialize @base_notifier = nil |