This will output a terse help entry: ``` python @Bot.command def foo(): """Usage: foo """ ... ``` But this won't: ``` python @Bot.command def foo(): """ Usage: foo """ ... ``` The latter should also be supported.
This will output a terse help entry:
But this won't:
The latter should also be supported.