From a273f512df3051ae60ae7b515b57bf719eacde51 Mon Sep 17 00:00:00 2001 From: balajisivanath Date: Thu, 9 Feb 2017 22:59:45 +0530 Subject: [PATCH] Possible grammar correction --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index e2612cd9..1481b21e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -95,7 +95,7 @@ Let's wrap our text in an `

` tag. m.render(root, m("h1", "My first app")) ``` -The `m()` function can be used to describe any HTML structure you want. So if you to add a class to the `

`: +The `m()` function can be used to describe any HTML structure you want. So if you need to add a class to the `

`: ```javascript m("h1", {class: "title"}, "My first app")