diff --git a/app/assets/javascripts/discourse/widgets/decorator-helper.js.es6 b/app/assets/javascripts/discourse/widgets/decorator-helper.js.es6 index 13db7ce8364..1679a708ec4 100644 --- a/app/assets/javascripts/discourse/widgets/decorator-helper.js.es6 +++ b/app/assets/javascripts/discourse/widgets/decorator-helper.js.es6 @@ -19,6 +19,8 @@ class DecoratorHelper { * // renders `

paragraph

` * return helper.h('div.some-class', helper.h('p', 'paragraph')); * ``` + * Check out https://github.com/Matt-Esch/virtual-dom/blob/master/virtual-hyperscript/README.md + * for more details on how to construct markup with h. **/ // h() is attached via `prototype` below