This commit is contained in:
Dolan
2018-08-09 03:23:07 +01:00
parent f6996a1d98
commit 5e7c5aa620

View File

@ -28,7 +28,7 @@ This is just a guideline, and the rules can sometimes be broken.
* Use `add` if you add the element into the method as a parameter:
```js
public createParagraph(paragraph: Paragraph) {
public addParagraph(paragraph: Paragraph) {
this.root.push(paragraph);
}
```