Skip to content

Commit

Permalink
Merge pull request #5337 from Polymer/fix-jsdoc
Browse files Browse the repository at this point in the history
Fix jsdoc to pass lint
  • Loading branch information
kevinpschaaf authored Aug 20, 2018
2 parents b1a7fd0 + 33828f3 commit e00e270
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/utils/boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e00e270

Please sign in to comment.