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)) ``` ---