Closed
Description
In many Python projects (such as pyglet), parameters are documented like this.
:Parameters:
``minimum`` : ``int``
Minimum value for random number.
``maximum`` : ``int``
Maximum value for random number.
Arcade is different. It lists each parameter with the prefix :param
, and it is overly repetitive. An indented parameter list looks much neater and more smoother. Additionally it looks more consistent on how the docs actually turn out (the word "Parameters" is right above the parameter list in the API docs). Is there a specific reason why Arcade's documentation is set like this? I'd be happy to fill out PRs to fix this.