Skip to content

Commit 7d5200d

Browse files
removed some whitespace space to make formatting consistent
1 parent cd809ea commit 7d5200d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/math/calculation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ p5.prototype.map = function(n, start1, stop1, start2, stop2, withinBounds) {
498498
* @param {Number[]} nums Numbers to compare
499499
* @return {Number}
500500
*/
501-
p5.prototype.max = function (...args) {
501+
p5.prototype.max = function(...args) {
502502
const findMax = arr => {
503503
let max = -Infinity;
504504
for (let x of arr) {
@@ -554,7 +554,7 @@ p5.prototype.max = function (...args) {
554554
* @param {Number[]} nums Numbers to compare
555555
* @return {Number}
556556
*/
557-
p5.prototype.min = function (...args) {
557+
p5.prototype.min = function(...args) {
558558
const findMin = arr => {
559559
let min = Infinity;
560560
for (let x of arr) {

0 commit comments

Comments
 (0)