Skip to content

Commit dd29845

Browse files
committed
Add a CR/LF to help.
1 parent 981a938 commit dd29845

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.rubocop_todo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2025-10-01 12:34:41 UTC using RuboCop version 1.81.1.
3+
# on 2025-10-01 12:40:26 UTC using RuboCop version 1.81.1.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new

slack-api-explorer/commands/help.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ def self.help_for(expression = nil)
2222
Not sure where to start? Try "auth test", then invite the bot to #general and DM it "chat postMessage --as_user=true --text='Hello World' --channel=#general".
2323
2424
Most commands contain subcommands, try "help <command>" (eg. "help api") to get a list of subcommands.
25-
```
25+
```\n
2626
EOS
2727

2828
def self.call(client, data, match)
2929
expression = match['expression'] if match.names.include?('expression')
3030
help = expression && !expression.empty? ? help_for(expression) : HELP
3131
client.say(channel: data.channel, text: [help, SlackApiExplorer::INFO].join("\n"))
32-
client.say(channel: data.channel, gif: 'help')
3332
logger.info "HELP: #{client.owner} - #{data.user}"
3433
end
3534
end

0 commit comments

Comments
 (0)