Skip to content

Commit 040beb0

Browse files
committed
Clean up circle documentation
1 parent cfd0de9 commit 040beb0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

shared-bindings/vectorio/Circle.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
//|
1818
//| .. class:: Circle(radius)
1919
//|
20+
//| Circle is positioned on screen by its center point.
21+
//|
2022
//| :param int radius: The radius of the circle in pixels
2123
//|
2224
static mp_obj_t vectorio_circle_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
@@ -42,7 +44,7 @@ static mp_obj_t vectorio_circle_make_new(const mp_obj_type_t *type, size_t n_arg
4244

4345
//| .. attribute:: radius
4446
//|
45-
//| Update the radius of the circle
47+
//| The radius of the circle in pixels.
4648
//|
4749
STATIC mp_obj_t vectorio_circle_obj_get_radius(mp_obj_t self_in) {
4850
vectorio_circle_t *self = MP_OBJ_TO_PTR(self_in);

0 commit comments

Comments
 (0)