From d1f9fdfcf60a4b3ba58d153e26b2b73b40b7b61c Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Fri, 21 Oct 2022 22:34:41 +0200 Subject: [PATCH] fix(markdown): Incorrect signature for point add/setCircle --- markdown/dev/reference/api/point/addcircle/en.md | 2 +- markdown/dev/reference/api/point/setcircle/en.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/markdown/dev/reference/api/point/addcircle/en.md b/markdown/dev/reference/api/point/addcircle/en.md index 811f3bc553e..39e652d94e0 100644 --- a/markdown/dev/reference/api/point/addcircle/en.md +++ b/markdown/dev/reference/api/point/addcircle/en.md @@ -10,7 +10,7 @@ will call `Point.attr()` as circles are added by setting attributes. Refer to ```js Point point.addCircle( - string text, + number radius, string className ) ``` diff --git a/markdown/dev/reference/api/point/setcircle/en.md b/markdown/dev/reference/api/point/setcircle/en.md index 67a722f3191..6515197bdfd 100644 --- a/markdown/dev/reference/api/point/setcircle/en.md +++ b/markdown/dev/reference/api/point/setcircle/en.md @@ -16,7 +16,7 @@ how circles are handled. ```js Point point.setCircle( - string text, + number radius, string className ) ```