summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorKevin Matocha <kmatocha@icloud.com>2020-09-01 18:10:40 -0500
committerKevin Matocha <kmatocha@icloud.com>2020-09-01 18:10:40 -0500
commit4b9306aa7cc87a5c0eed52db36cbccd5d00152b6 (patch)
tree1ab5c19f1fcb85cfe51a26da73f695d868560286 /shared-bindings
parent554cc356dbdce74101e86090d71ea2955908f78a (diff)
Cleanup for sphinx
Diffstat (limited to 'shared-bindings')
-rw-r--r--shared-bindings/displayio/Display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c
index 5d9569f4c..72b0eef27 100644
--- a/shared-bindings/displayio/Display.c
+++ b/shared-bindings/displayio/Display.c
@@ -227,11 +227,11 @@ MP_DEFINE_CONST_FUN_OBJ_2(displayio_display_show_obj, displayio_display_obj_show
//| When auto refresh is on, updates the display immediately. (The display will also update
//| without calls to this.)
//|
-//| When auto refresh is off, `refresh()` or `refresh(target_frames_per_second=None)` will update
+//| When auto refresh is off, refresh() or refresh(target_frames_per_second=None) will update
//| the display immediately.
//|
-//| :param int target_frames_per_second: How many times a second `refresh` should be called
-//| and the screen updated. Set to `None` for immediate refresh.
+//| :param int target_frames_per_second: How many times a second `refresh` should be called and the screen updated.
+//| Set to None for immediate refresh.
//| :param int minimum_frames_per_second: The minimum number of times the screen should be updated per second."""
//| ...
//|