Closed tcassaert closed 2 years ago
When trying out the getting-started.md page, it didn't work out of the box.
getting-started.md
I had to add @command.new("hello_world") instead of just @command.new().
@command.new("hello_world")
@command.new()
The code is correct, but the doc after it is not, the command is actually !hello-world
!hello-world
You were right. It indeed works with the hyphen instead of the underscore. I've adapted my PR.
hyphen
underscore
When trying out the
getting-started.md
page, it didn't work out of the box.I had to add
@command.new("hello_world")
instead of just@command.new()
.