Skip to content

Commit

Permalink
add missing @author annotations, phetsims/chipper#1414
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Jan 18, 2024
1 parent 3b075f6 commit a7ab21b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions js/neuron-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

/**
* Main entry point for the neuron sim.
*
* @author Sam Reid
*/

import Sim from '../../joist/js/Sim.js';
Expand Down
2 changes: 2 additions & 0 deletions js/neuron/common/NeuronProfiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Sim-specific code for profiling, created for testing optimizations. This profiler can be triggered via a method call
* and will then gather profiling data for the specified amount of time, and then log the collected information to the
* console. On iOS devices, it displays the information in an "alert" window.
*
* @author John Blanco (PhET Interactive Simulations)
*/

import Utils from '../../../../dot/js/Utils.js';
Expand Down
2 changes: 1 addition & 1 deletion js/neuron/model/ParticleFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Factory class for Particle
*
* @Sharfudeen Ashraf (for Ghent University)
* @author Sharfudeen Ashraf (for Ghent University)
*/

import neuron from '../../neuron.js';
Expand Down
3 changes: 3 additions & 0 deletions js/neuron/model/ParticlePosition.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// Copyright 2014-2021, University of Colorado Boulder

/**
* @author Sam Reid
*/

import neuron from '../../neuron.js';

Expand Down
2 changes: 2 additions & 0 deletions js/neuron/view/chart/DataLineCanvasNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
/**
* A node that represents a line created from a collection of points, intended to be used to represent data on a
* graph. This is created as part of an effort to improve the performance of the dynamic chart in the Neuron sim.
*
* @author John Blanco (PhET Interactive Simulations)
*/

import Bounds2 from '../../../../../dot/js/Bounds2.js';
Expand Down

0 comments on commit a7ab21b

Please sign in to comment.