Skip to content

Commit eabac80

Browse files
author
Oleg Sukhodolsky
committed
variable's name corrected
1 parent 5864d70 commit eabac80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ruby-debug-ide/commands/breakpoints.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ def help(cmd)
6767

6868
private
6969
def realpath(filename)
70-
filename = File.expand_path(file) if file.index(File::SEPARATOR) || \
71-
File::ALT_SEPARATOR && file.index(File::ALT_SEPARATOR)
70+
filename = File.expand_path(filename) if filename.index(File::SEPARATOR) || \
71+
File::ALT_SEPARATOR && filename.index(File::ALT_SEPARATOR)
7272
if defined?(JRUBY_VERSION)
7373
java.io.File.new(filename).canonical_path
7474
elsif RUBY_VERSION < '1.9'

0 commit comments

Comments
 (0)