-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add comment blocks to classes/methods/properties #378
Comments
@teddyzeenny I'd like to help with this, it would be a good way to get to know the code. |
@pete-the-pete are you still interested? |
Yes, still interested, but obviously got busy and forgot about this. I On Thu, Sep 22, 2016 at 7:05 AM, Ricardo Mendes [email protected]
|
@pete-the-pete no worries, this is in the "nice to have" camp so you're not blocking work. See you next week! |
I'd love to lend a hand here! |
@ynotdraw please do! There is a lot of magic and complex code in Inspector, so the more docs the better! |
@ynotdraw let's sync up on what you would like to work on here, and split this into more concrete and manageable chunks of work. |
Part of #360
Use YUIDoc format to comment on all classes/methods/properties.
Classes, methods, and properties should have a detailed description above them about what they do and how they are used. If a method/property is clearly self descriptive, no description is needed.
Classes need the
@namespace
and@class
keywords.Methods need the
@method method-name
,@param {Type} name Description
,@return {Type} Description
keywords.Properties need the
@property property-name
,@type {Type}
,@default default-value
.Computed properties are
@property
(not@method
).Example:
The text was updated successfully, but these errors were encountered: