Skip to content

Commit

Permalink
Added REVIEW comments, see phetsims/area-model-common#99
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Apr 19, 2018
1 parent 81a47c4 commit f67ad2e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions checklists/code_review_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,11 @@ Because JavaScript lacks visibility modifiers (public, protected, private), PhET
- [ ] For something made public solely for a11y, use `@public (a11y)`
- [ ] For something made public solely for phet-io, use `@public (phet-io)`
- [ ] Separate multiple qualifiers with commas. For example: `@public (scenery-internal, read-only)`
- [ ] Specify the most general type clients should know about. For example;
```js
// @public (read-only) {Node}
this.myNode = new VeryComplicatedNodeSubclass()
```
- [ ] For JSDoc-style comments, the annotation should appear in context like this:
Expand Down

0 comments on commit f67ad2e

Please sign in to comment.