From db0063362c110e176c6df45abcaf1ed16f827389 Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 7 Jan 2017 17:56:29 -0500 Subject: [PATCH] fix typo --- docs/jsx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/jsx.md b/docs/jsx.md index 819d8315..ee6d606d 100644 --- a/docs/jsx.md +++ b/docs/jsx.md @@ -44,7 +44,7 @@ Components can be used by using a convention of uppercasing the first letter of ```javascript m.mount(document.body, ) -// equivalent to m.mount(document.body, m(Component)) +// equivalent to m.mount(document.body, m(MyComponent)) ``` ---