Skip to content

Commit 55358a3

Browse files
ning-githubmhevery
authored andcommitted
docs(core/render/dom/compiler/property_binding_parser.ts): correct typo
"identifier" was misspelled. Closes angular#4095
1 parent a2bcf71 commit 55358a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/angular2/src/core/render/dom/compiler/property_binding_parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import {dashCaseToCamelCase} from '../util';
1414
// Group 3 = "on-"
1515
// Group 4 = "bindon-"
1616
// Group 5 = the identifier after "bind-", "var-/#", or "on-"
17-
// Group 6 = idenitifer inside [()]
18-
// Group 7 = idenitifer inside []
17+
// Group 6 = identifier inside [()]
18+
// Group 7 = identifier inside []
1919
// Group 8 = identifier inside ()
2020
var BIND_NAME_REGEXP =
2121
/^(?:(?:(?:(bind-)|(var-|#)|(on-)|(bindon-))(.+))|\[\(([^\)]+)\)\]|\[([^\]]+)\]|\(([^\)]+)\))$/g;

0 commit comments

Comments
 (0)