From 52620390966d6b796d36a8b294b7e90e5276b61e Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Wed, 23 May 2018 22:06:50 +0300 Subject: [PATCH] refactor(ngModelOptions): fix `ng-closure-runner` warning Without this fix `grunt minall` emits the following warning: > WARNING - Parse error. Non-JSDoc comment has annotations. > Did you mean to start it with '/**'? Closes #16575 --- src/ng/directive/ngModelOptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/ngModelOptions.js b/src/ng/directive/ngModelOptions.js index 62408d2ea..aefc7355c 100644 --- a/src/ng/directive/ngModelOptions.js +++ b/src/ng/directive/ngModelOptions.js @@ -41,7 +41,7 @@ ModelOptions.prototype = { options = extend({}, options); // Inherit options from the parent if specified by the value `"$inherit"` - forEach(options, /* @this */ function(option, key) { + forEach(options, /** @this */ function(option, key) { if (option === '$inherit') { if (key === '*') { inheritAll = true;