chore(markdown): Added note to chainable methods
This commit is contained in:
parent
e314e58e33
commit
37b6c231f8
4 changed files with 8 additions and 0 deletions
|
@ -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)">
|
||||
|
|
|
@ -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)">
|
||||
|
|
|
@ -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)">
|
||||
|
|
|
@ -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)">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue