From 33828f3809636fa1fdd0858e30d9a70b3bb707c5 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Mon, 20 Aug 2018 14:20:48 -0700 Subject: [PATCH] Fix jsdoc to pass lint --- lib/utils/boot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils/boot.js b/lib/utils/boot.js index 5fc25b58a6..4b8c6cdc87 100644 --- a/lib/utils/boot.js +++ b/lib/utils/boot.js @@ -13,9 +13,9 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN * When using Closure Compiler, JSCompiler_renameProperty(property, object) is replaced by the munged name for object[property] * We cannot alias this function, so we have to use a small shim that has the same behavior when not compiling. * - * @param {string} prop - * @param {?Object} obj - * @return {string} + * @param {string} prop Property name + * @param {?Object} obj Reference object + * @return {string} Dereferenced value */ window.JSCompiler_renameProperty = function(prop, obj) { return prop;