Skip to content

Commit f39f991

Browse files
committed
typo fixed
1 parent 4611e3a commit f39f991

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/ruby-debug-ide.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def print_greeting_msg(host, port)
145145
'debase'
146146
end
147147

148-
file_filtering_support = if Command.file_fiter_supported?
148+
file_filtering_support = if Command.file_filter_supported?
149149
'supported'
150150
else
151151
'not supported'

lib/ruby-debug-ide/command.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def unescape_incoming(str)
7171
end.gsub(/\\\\/, '\\')
7272
end
7373

74-
def file_fiter_supported?
74+
def file_filter_supported?
7575
defined?(Debugger.file_filter)
7676
end
7777
end

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def execute
1212
return if file.nil?
1313
file = realpath(file)
1414

15-
if Command.file_fiter_supported?
15+
if Command.file_filter_supported?
1616
Debugger.file_filter.include(file)
1717
print_file_included(file)
1818
else
@@ -46,7 +46,7 @@ def execute
4646
return if file.nil?
4747
file = realpath(file)
4848

49-
if Command.file_fiter_supported?
49+
if Command.file_filter_supported?
5050
Debugger.file_filter.exclude(file)
5151
print_file_excluded(file)
5252
else

0 commit comments

Comments
 (0)