angular-docs-cn/tools/doc-shredder/_test/test_fragments/no-multiregion/nested-regions-all.js.ovr.md

21 lines
336 B
Markdown
Raw Normal View History

2015-10-14 15:47:22 -04:00
```
/**
* @description This function logs a string.
*/
function log() {
console.log('Logging.');
}
/**
* @description My application
*/
var myApp = {
/**
* @description Display a greeting
* @param {string} name The name of the person to greet
*/
greet: function(name) {
console.log('hello ' + name);
}
2015-10-14 15:47:22 -04:00
};
```