use JSDoc/Closure Compiler style type annotations

This commit is contained in:
Jake Teton-Landis
2014-12-01 14:28:20 -08:00
parent 8d51bd504b
commit b61d52ca41

View File

@@ -651,8 +651,8 @@
// make() returns a new element
// based on the passed in tag name
//
// @param <String> tag
// @return <Element> element
// @param {String} tag
// @return {Element} element
function make(tag) {
// ...stuff...
@@ -665,8 +665,8 @@
* make() returns a new element
* based on the passed in tag name
*
* @param <String> tag
* @return <Element> element
* @param {String} tag
* @return {Element} element
*/
function make(tag) {