Docs: formatting issue for Sparkline.add_value #51
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello,
The documentation for the
add_value
method of theSparkline
class has some rendering issues, with the parameters not being listed correctly. The text:param value:
and:param update:
is visible on the page, instead of having the effect of listing each parameter individually.Here's how it gets rendered (from this page):
I believe this is due to the lack of a new line between the description for the method and the list of parameters. This commits adds the missing line.
See for comparison how this looks for the constructor, there's a gap before
:param width
:Adafruit_CircuitPython_Display_Shapes/adafruit_display_shapes/sparkline.py
Lines 50 to 55 in cdef091