From a7ab21b565b723e426b98862138dd10f65d1ff7a Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Thu, 18 Jan 2024 15:42:45 -0700 Subject: [PATCH] add missing @author annotations, https://github.com/phetsims/chipper/issues/1414 --- js/neuron-main.js | 2 ++ js/neuron/common/NeuronProfiler.js | 2 ++ js/neuron/model/ParticleFactory.js | 2 +- js/neuron/model/ParticlePosition.js | 3 +++ js/neuron/view/chart/DataLineCanvasNode.js | 2 ++ 5 files changed, 10 insertions(+), 1 deletion(-) diff --git a/js/neuron-main.js b/js/neuron-main.js index 8377a27..1d7cdea 100644 --- a/js/neuron-main.js +++ b/js/neuron-main.js @@ -2,6 +2,8 @@ /** * Main entry point for the neuron sim. + * + * @author Sam Reid */ import Sim from '../../joist/js/Sim.js'; diff --git a/js/neuron/common/NeuronProfiler.js b/js/neuron/common/NeuronProfiler.js index a385154..ec7bf62 100644 --- a/js/neuron/common/NeuronProfiler.js +++ b/js/neuron/common/NeuronProfiler.js @@ -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'; diff --git a/js/neuron/model/ParticleFactory.js b/js/neuron/model/ParticleFactory.js index 05d0915..a2bce8a 100644 --- a/js/neuron/model/ParticleFactory.js +++ b/js/neuron/model/ParticleFactory.js @@ -3,7 +3,7 @@ /** * Factory class for Particle * - * @Sharfudeen Ashraf (for Ghent University) + * @author Sharfudeen Ashraf (for Ghent University) */ import neuron from '../../neuron.js'; diff --git a/js/neuron/model/ParticlePosition.js b/js/neuron/model/ParticlePosition.js index b58171a..9882356 100644 --- a/js/neuron/model/ParticlePosition.js +++ b/js/neuron/model/ParticlePosition.js @@ -1,5 +1,8 @@ // Copyright 2014-2021, University of Colorado Boulder +/** + * @author Sam Reid + */ import neuron from '../../neuron.js'; diff --git a/js/neuron/view/chart/DataLineCanvasNode.js b/js/neuron/view/chart/DataLineCanvasNode.js index 3ee8c7f..15b6c73 100644 --- a/js/neuron/view/chart/DataLineCanvasNode.js +++ b/js/neuron/view/chart/DataLineCanvasNode.js @@ -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';