diff options
| author | Misko Hevery | 2010-10-27 15:31:10 -0700 |
|---|---|---|
| committer | Igor Minar | 2010-11-03 09:47:22 -0700 |
| commit | 659af29adbd041fbbbaf041ead53266210a61f4e (patch) | |
| tree | 32a9ecff4482ae883321e2975fe74057795b21d1 /src/Angular.js | |
| parent | 1fe7e3a1302e948a31ab80d02ede6975c3bddd58 (diff) | |
| download | angular.js-659af29adbd041fbbbaf041ead53266210a61f4e.tar.bz2 | |
jsdoc parser + generator + viewer + scenario runner
- parse jsdocs from source code
- generate prerendered (markdown + mustache) partials
- generate json
- generate scenario runner for examples in docs
- basic angular doc viewer
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Angular.js b/src/Angular.js index 62cfdef6..004ab48f 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -10,7 +10,7 @@ if (typeof document.getAttribute == $undefined) * * @description Converts string to lowercase * @param {string} value - * @return {string} Lowercased string. + * @returns {string} Lowercased string. */ var lowercase = function (value){ return isString(value) ? value.toLowerCase() : value; }; @@ -22,7 +22,7 @@ var lowercase = function (value){ return isString(value) ? value.toLowerCase() : * * @description Converts string to uppercase. * @param {string} value - * @return {string} Uppercased string. + * @returns {string} Uppercased string. */ var uppercase = function (value){ return isString(value) ? value.toUpperCase() : value; }; @@ -100,7 +100,7 @@ var _undefined = undefined, * @ngdoc overview * @name angular.filter * @namespace Namespace for all filters. - * + * @description * # Overview * Filters are a standard way to format your data for display to the user. For example, you * might have the number 1234.5678 and would like to display it as US currency: $1,234.57. @@ -364,7 +364,7 @@ function isLeafNode (node) { * @param {*} source The source to be used during copy. * Can be any type including primitives, null and undefined. * @param {(Object|Array)=} destination Optional destination into which the source is copied - * @return {*} + * @returns {*} */ function copy(source, destination){ if (!destination) { @@ -507,7 +507,7 @@ function compile(element, existingScope) { /** * Parses an escaped url query string into key-value pairs. - * @return Object.<(string|boolean)> + * @returns Object.<(string|boolean)> */ function parseKeyValue(/**string*/keyValue) { var obj = {}, key_value, key; |
