docs(template_parser.ts): typo
This commit is contained in:
parent
90b3502bb8
commit
9b3a548f6f
|
@ -52,8 +52,8 @@ import {splitAtColon} from './util';
|
||||||
// Group 3 = "on-"
|
// Group 3 = "on-"
|
||||||
// Group 4 = "bindon-"
|
// Group 4 = "bindon-"
|
||||||
// Group 5 = the identifier after "bind-", "var-/#", or "on-"
|
// Group 5 = the identifier after "bind-", "var-/#", or "on-"
|
||||||
// Group 6 = identifer inside [()]
|
// Group 6 = identifier inside [()]
|
||||||
// Group 7 = identifer inside []
|
// Group 7 = identifier inside []
|
||||||
// Group 8 = identifier inside ()
|
// Group 8 = identifier inside ()
|
||||||
var BIND_NAME_REGEXP =
|
var BIND_NAME_REGEXP =
|
||||||
/^(?:(?:(?:(bind-)|(var-|#)|(on-)|(bindon-))(.+))|\[\(([^\)]+)\)\]|\[([^\]]+)\]|\(([^\)]+)\))$/g;
|
/^(?:(?:(?:(bind-)|(var-|#)|(on-)|(bindon-))(.+))|\[\(([^\)]+)\)\]|\[([^\]]+)\]|\(([^\)]+)\))$/g;
|
||||||
|
|
Loading…
Reference in New Issue