about summary refs log tree commit diff
path: root/app/lib/command_tag/commands/hello_world.rb
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-07-24 04:38:43 -0500
committerFire Demon <firedemon@creature.cafe>2020-08-30 05:45:15 -0500
commit4b229e11d875d1a57a381eeb1a5d9ec9f72ec503 (patch)
tree87283bbd03b79be66d4ee71f19d998050075c182 /app/lib/command_tag/commands/hello_world.rb
parent48e527317f00563c430c73b72304ba74deb5622b (diff)
[Command Tags] Preload statement handlers
Diffstat (limited to 'app/lib/command_tag/commands/hello_world.rb')
-rw-r--r--app/lib/command_tag/commands/hello_world.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/command_tag/commands/hello_world.rb b/app/lib/command_tag/commands/hello_world.rb
index 4cf17685e..581b21317 100644
--- a/app/lib/command_tag/commands/hello_world.rb
+++ b/app/lib/command_tag/commands/hello_world.rb
@@ -1,7 +1,7 @@
 # frozen_string_literal: true
 
 module CommandTag::Commands::HelloWorld
-  def handle_hello_world_at_start
+  def handle_hello_world_at_start(_)
     @text << "\nHello, world!"
   end
 end