Skip to content

Commit

Permalink
JSDoc is so picky
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 1, 2024
1 parent 3c7faf6 commit 45e8f5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javascript/p0000_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* This paragraph should be replaced by the problem description, excluding images.
*
* @returns {number}
* @return {number}
**/

exports.p0000 = function() {
Expand Down
2 changes: 1 addition & 1 deletion javascript/p0001.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* Find the sum of all the multiples of 3 or 5 below 1000.
*
* @returns {number}
* @return {number}
*/
exports.p0001 = function() {
let answer = 0;
Expand Down
2 changes: 1 addition & 1 deletion javascript/p0002.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* By considering the terms in the Fibonacci sequence whose values do not exceed
* four million, find the sum of the even-valued terms.
*
* @returns {number}
* @return {number}
**/
exports.p0002 = function() {
// for a proof on why this formulation works, see python/p0002.py
Expand Down

0 comments on commit 45e8f5e

Please sign in to comment.