1
0
Fork 0

chore(markdown): Added note to chainable methods

This commit is contained in:
Joost De Cock 2022-09-29 17:43:32 +02:00
parent e314e58e33
commit 37b6c231f8
4 changed files with 8 additions and 0 deletions

View file

@ -15,6 +15,8 @@ Point point.addCircle(
)
```
<Tip compact>This method is chainable as it returns the `Point` object</Tip>
## Example
<Example caption="Examples of Point.addCircle(), compare this to [Point.setCircle](/reference/api/point/setcircle)">

View file

@ -15,6 +15,8 @@ Point point.addText(
)
```
<Tip compact>This method is chainable as it returns the `Point` object</Tip>
## Example
<Example caption="Examples of Point.addText(), compare this to [Point.setText](/reference/api/point/settext)">

View file

@ -21,6 +21,8 @@ Point point.setCircle(
)
```
<Tip compact>This method is chainable as it returns the `Point` object</Tip>
## Example
<Example caption="Examples of Point.setCircle(), compare this to [Point.addCircle](/reference/api/point/addcircle)">

View file

@ -15,6 +15,8 @@ Point point.setText(
)
```
<Tip compact>This method is chainable as it returns the `Point` object</Tip>
## Example
<Example caption="Examples of Point.setText(), compare this to [Point.setText](/reference/api/point/settext)">