Browse Source

Code documentation (#23722)

Typo: euclidean
Jason Sturges 3 years ago
parent
commit
c1f5d6457e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/math/MathUtils.js

+ 1 - 1
src/math/MathUtils.js

@@ -35,7 +35,7 @@ function clamp( value, min, max ) {
 
 }
 
-// compute euclidian modulo of m % n
+// compute euclidean modulo of m % n
 // https://en.wikipedia.org/wiki/Modulo_operation
 function euclideanModulo( n, m ) {