aboutsummaryrefslogtreecommitdiffstats
path: root/src/directive/ngTransclude.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/directive/ngTransclude.js')
-rw-r--r--src/directive/ngTransclude.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/directive/ngTransclude.js b/src/directive/ngTransclude.js
index 16587f30..ab4011f0 100644
--- a/src/directive/ngTransclude.js
+++ b/src/directive/ngTransclude.js
@@ -2,7 +2,7 @@
/**
* @ngdoc directive
- * @name angular.module.ng.$compileProvider.directive.ng:transclude
+ * @name angular.module.ng.$compileProvider.directive.ng-transclude
*
* @description
* Insert the transcluded DOM here.
@@ -32,9 +32,9 @@
};
});
</script>
- <div ng:controller="Ctrl">
- <input ng:model="title"><br>
- <textarea ng:model="text"></textarea> <br/>
+ <div ng-controller="Ctrl">
+ <input ng-model="title"><br>
+ <textarea ng-model="text"></textarea> <br/>
<pane title="{{title}}">{{text}}</pane>
</div>
</doc:source>