mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
16 lines
263 B
JavaScript
16 lines
263 B
JavaScript
/**
|
|
* Namespace doStuff.
|
|
* @namespace doStuff
|
|
*/
|
|
|
|
/**
|
|
* Function with the same name as its namespace.
|
|
* @memberof doStuff
|
|
*/
|
|
function doStuff() {}
|
|
|
|
/**
|
|
* Function with a different name than the namespace.
|
|
* @memberof doStuff
|
|
*/
|
|
function doOtherStuff() {} |