docs(error/noident): add missing comma

Closes #15086
This commit is contained in:
Martin Staffa
2016-09-05 22:57:59 +02:00
parent 45129cfd06
commit de1ede7f44
+1 -1
View File
@@ -16,7 +16,7 @@ For example, the following directives are valid:
directive("okay", function() {
return {
bindToController: true,
controller: "myCtrl as $ctrl"
controller: "myCtrl as $ctrl",
scope: {
text: "@text"
}