diff --git a/src/guide/extras/render-function.md b/src/guide/extras/render-function.md index f6386f39d8..2450938ac8 100644 --- a/src/guide/extras/render-function.md +++ b/src/guide/extras/render-function.md @@ -26,7 +26,7 @@ const vnode = h( ) ``` -`h()` is short for **hyperscript** - which means "JavaScript that produces HTML (hypertext markup language)". This name is inherited from conventions shared by many virtual DOM implementations. A more descriptive name could be `createVnode()`, but a shorter name helps when you have to call this function many times in a render function. +`h()` is short for **hyperscript** - which means "JavaScript that produces HTML (hypertext markup language)". This name is inherited from conventions shared by many virtual DOM implementations. A more descriptive name could be `createVNode()`, but a shorter name helps when you have to call this function many times in a render function. The `h()` function is designed to be very flexible: