From 5e7c5aa620509b75865c9a4a9058855139b2e1c9 Mon Sep 17 00:00:00 2001 From: Dolan Date: Thu, 9 Aug 2018 03:23:07 +0100 Subject: [PATCH] Fix typo --- docs/contribution-guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contribution-guidelines.md b/docs/contribution-guidelines.md index e50ec54f54..5d1442fe0c 100644 --- a/docs/contribution-guidelines.md +++ b/docs/contribution-guidelines.md @@ -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); } ```