Skip to content

Instantly share code, notes, and snippets.

@arcanis
Created October 1, 2011 09:44
Show Gist options
  • Save arcanis/1255812 to your computer and use it in GitHub Desktop.
Save arcanis/1255812 to your computer and use it in GitHub Desktop.
/**
* @class
*/
var foo = function () {
/**
* Stop, hammertime.
*
* @memberOf foo#
* @returns 42
*/
this.lol = function () {
return 42;
};
};
/**
* @class
*/
var foo = function () {
/**
* Stop, hammertime.
*
* @name lol
* @memberOf foo#
* @returns 42
*/
this.lol = function () {
return 42;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment