phetsims / pendulum-lab

"Pendulum Lab" is an educational simulation in HTML5, by PhET Interactive Simulations.
GNU General Public License v3.0
4 stars 10 forks source link

Document Array types #64

Closed aaronsamuel137 closed 9 years ago

aaronsamuel137 commented 9 years ago

During code review #56, I noticed many JSDoc strings like the following:

   * @param {Array} pendulums - Array of pendulum models.

The PhET convention elsewhere is to document the type of the items in the array, so something like

   * @param {Array.<Pendulum>} pendulums - Array of pendulum models.
andrey-zelenkov commented 9 years ago

Fixed documentation for Array types. Reassign to @aaronsamuel137 for verification.

aaronsamuel137 commented 9 years ago

Looks good, closing