Skip to content

Commit a14fc6c

Browse files
committed
Fix double space
1 parent c2f90c4 commit a14fc6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/irb/extend-command.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def install_alias_method(to, from, override = NO_OVERRIDE)
285285

286286
if override == OVERRIDE_ALL or
287287
(override == OVERRIDE_PRIVATE_ONLY) && !respond_to?(to) or
288-
(override == NO_OVERRIDE) && !respond_to?(to, true)
288+
(override == NO_OVERRIDE) && !respond_to?(to, true)
289289
target = self
290290
(class << self; self; end).instance_eval{
291291
if target.respond_to?(to, true) &&

0 commit comments

Comments
 (0)