File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
/**
4
- * @ngdoc function
4
+ * @ngdoc object
5
5
* @name ng.$interpolateProvider
6
6
* @function
7
7
*
@@ -20,7 +20,8 @@ function $InterpolateProvider() {
20
20
* @description
21
21
* Symbol to denote start of expression in the interpolated string. Defaults to `{{`.
22
22
*
23
- * @prop {string= } value new value to set the starting symbol to.
23
+ * @param {string= } value new value to set the starting symbol to.
24
+ * @returns {string|self } Returns the symbol when used as getter and self if used as setter.
24
25
*/
25
26
this . startSymbol = function ( value ) {
26
27
if ( value ) {
@@ -38,7 +39,8 @@ function $InterpolateProvider() {
38
39
* @description
39
40
* Symbol to denote the end of expression in the interpolated string. Defaults to `}}`.
40
41
*
41
- * @prop {string= } value new value to set the ending symbol to.
42
+ * @param {string= } value new value to set the ending symbol to.
43
+ * @returns {string|self } Returns the symbol when used as getter and self if used as setter.
42
44
*/
43
45
this . endSymbol = function ( value ) {
44
46
if ( value ) {
You can’t perform that action at this time.
0 commit comments