Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 5262039

Browse files
committed
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
1 parent 96c4cb6 commit 5262039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/ngModelOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ModelOptions.prototype = {
4141
options = extend({}, options);
4242

4343
// Inherit options from the parent if specified by the value `"$inherit"`
44-
forEach(options, /* @this */ function(option, key) {
44+
forEach(options, /** @this */ function(option, key) {
4545
if (option === '$inherit') {
4646
if (key === '*') {
4747
inheritAll = true;

0 commit comments

Comments
 (0)