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.