Skip to content

Commit 9280835

Browse files
committed
fix weird dot
1 parent f0420e5 commit 9280835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/bashly/commands/doc.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def show_help(help)
6363
def data
6464
return raw_data unless args['SEARCH']
6565

66-
result = raw_data.select { |k, _v| k.== args['SEARCH'] }
66+
result = raw_data.select { |k, _v| k == args['SEARCH'] }
6767
return result if result.any?
6868

6969
result = raw_data.select { |k, _v| k.include? args['SEARCH'] }

0 commit comments

Comments
 (0)