106106 * @ngdoc function
107107 * @name angular.lowercase
108108 * @module ng
109- * @function
109+ * @kind function
110110 *
111111 * @description Converts the specified string to lowercase.
112112 * @param {string } string String to be converted to lowercase.
@@ -119,7 +119,7 @@ var hasOwnProperty = Object.prototype.hasOwnProperty;
119119 * @ngdoc function
120120 * @name angular.uppercase
121121 * @module ng
122- * @function
122+ * @kind function
123123 *
124124 * @description Converts the specified string to uppercase.
125125 * @param {string } string String to be converted to uppercase.
@@ -201,7 +201,7 @@ function isArrayLike(obj) {
201201 * @ngdoc function
202202 * @name angular.forEach
203203 * @module ng
204- * @function
204+ * @kind function
205205 *
206206 * @description
207207 * Invokes the `iterator` function once for each item in `obj` collection, which can be either an
@@ -330,7 +330,7 @@ function setHashKey(obj, h) {
330330 * @ngdoc function
331331 * @name angular.extend
332332 * @module ng
333- * @function
333+ * @kind function
334334 *
335335 * @description
336336 * Extends the destination object `dst` by copying all of the properties from the `src` object(s)
@@ -367,7 +367,7 @@ function inherit(parent, extra) {
367367 * @ngdoc function
368368 * @name angular.noop
369369 * @module ng
370- * @function
370+ * @kind function
371371 *
372372 * @description
373373 * A function that performs no operations. This function can be useful when writing code in the
@@ -387,7 +387,7 @@ noop.$inject = [];
387387 * @ngdoc function
388388 * @name angular.identity
389389 * @module ng
390- * @function
390+ * @kind function
391391 *
392392 * @description
393393 * A function that returns its first argument. This function is useful when writing code in the
@@ -409,7 +409,7 @@ function valueFn(value) {return function() {return value;};}
409409 * @ngdoc function
410410 * @name angular.isUndefined
411411 * @module ng
412- * @function
412+ * @kind function
413413 *
414414 * @description
415415 * Determines if a reference is undefined.
@@ -424,7 +424,7 @@ function isUndefined(value){return typeof value === 'undefined';}
424424 * @ngdoc function
425425 * @name angular.isDefined
426426 * @module ng
427- * @function
427+ * @kind function
428428 *
429429 * @description
430430 * Determines if a reference is defined.
@@ -439,7 +439,7 @@ function isDefined(value){return typeof value !== 'undefined';}
439439 * @ngdoc function
440440 * @name angular.isObject
441441 * @module ng
442- * @function
442+ * @kind function
443443 *
444444 * @description
445445 * Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not
@@ -455,7 +455,7 @@ function isObject(value){return value != null && typeof value === 'object';}
455455 * @ngdoc function
456456 * @name angular.isString
457457 * @module ng
458- * @function
458+ * @kind function
459459 *
460460 * @description
461461 * Determines if a reference is a `String`.
@@ -470,7 +470,7 @@ function isString(value){return typeof value === 'string';}
470470 * @ngdoc function
471471 * @name angular.isNumber
472472 * @module ng
473- * @function
473+ * @kind function
474474 *
475475 * @description
476476 * Determines if a reference is a `Number`.
@@ -485,7 +485,7 @@ function isNumber(value){return typeof value === 'number';}
485485 * @ngdoc function
486486 * @name angular.isDate
487487 * @module ng
488- * @function
488+ * @kind function
489489 *
490490 * @description
491491 * Determines if a value is a date.
@@ -502,7 +502,7 @@ function isDate(value) {
502502 * @ngdoc function
503503 * @name angular.isArray
504504 * @module ng
505- * @function
505+ * @kind function
506506 *
507507 * @description
508508 * Determines if a reference is an `Array`.
@@ -519,7 +519,7 @@ function isArray(value) {
519519 * @ngdoc function
520520 * @name angular.isFunction
521521 * @module ng
522- * @function
522+ * @kind function
523523 *
524524 * @description
525525 * Determines if a reference is a `Function`.
@@ -593,7 +593,7 @@ var trim = (function() {
593593 * @ngdoc function
594594 * @name angular.isElement
595595 * @module ng
596- * @function
596+ * @kind function
597597 *
598598 * @description
599599 * Determines if a reference is a DOM element (or wrapped jQuery element).
@@ -704,7 +704,7 @@ function isLeafNode (node) {
704704 * @ngdoc function
705705 * @name angular.copy
706706 * @module ng
707- * @function
707+ * @kind function
708708 *
709709 * @description
710710 * Creates a deep copy of `source`, which should be an object or an array.
@@ -850,7 +850,7 @@ function shallowCopy(src, dst) {
850850 * @ngdoc function
851851 * @name angular.equals
852852 * @module ng
853- * @function
853+ * @kind function
854854 *
855855 * @description
856856 * Determines if two objects or two values are equivalent. Supports value types, regular
@@ -937,7 +937,7 @@ function sliceArgs(args, startIndex) {
937937 * @ngdoc function
938938 * @name angular.bind
939939 * @module ng
940- * @function
940+ * @kind function
941941 *
942942 * @description
943943 * Returns a function which calls function `fn` bound to `self` (`self` becomes the `this` for
@@ -993,7 +993,7 @@ function toJsonReplacer(key, value) {
993993 * @ngdoc function
994994 * @name angular.toJson
995995 * @module ng
996- * @function
996+ * @kind function
997997 *
998998 * @description
999999 * Serializes input into a JSON-formatted string. Properties with leading $$ characters will be
@@ -1013,7 +1013,7 @@ function toJson(obj, pretty) {
10131013 * @ngdoc function
10141014 * @name angular.fromJson
10151015 * @module ng
1016- * @function
1016+ * @kind function
10171017 *
10181018 * @description
10191019 * Deserializes a JSON string.
0 commit comments