We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0420e5 commit 9280835Copy full SHA for 9280835
lib/bashly/commands/doc.rb
@@ -63,7 +63,7 @@ def show_help(help)
63
def data
64
return raw_data unless args['SEARCH']
65
66
- result = raw_data.select { |k, _v| k.== args['SEARCH'] }
+ result = raw_data.select { |k, _v| k == args['SEARCH'] }
67
return result if result.any?
68
69
result = raw_data.select { |k, _v| k.include? args['SEARCH'] }
0 commit comments