1
0
Fork 0

fix(markdown): Incorrect signature for point add/setCircle

This commit is contained in:
Joost De Cock 2022-10-21 22:34:41 +02:00
parent e319c9a30a
commit d1f9fdfcf6
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ will call `Point.attr()` as circles are added by setting attributes. Refer to
```js ```js
Point point.addCircle( Point point.addCircle(
string text, number radius,
string className string className
) )
``` ```

View file

@ -16,7 +16,7 @@ how circles are handled.
```js ```js
Point point.setCircle( Point point.setCircle(
string text, number radius,
string className string className
) )
``` ```