]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix 2 typos
authorterencehill <piuntn@gmail.com>
Fri, 30 Mar 2018 13:26:21 +0000 (15:26 +0200)
committerterencehill <piuntn@gmail.com>
Fri, 30 Mar 2018 13:26:21 +0000 (15:26 +0200)
qcsrc/lib/math.qh

index f20b1c66e5bf120be7748737dabe8b9e8dec9f88..d8f19906a3eb26b1d9003e74f4493450f4b018d8 100644 (file)
@@ -324,9 +324,9 @@ vector solve_quadratic(float a, float b, float c)
 }
 
 /// Maps values between the src and dest range: src_min to dest_min, src_max to dest_max, values between them
-/// to the curresponding values between and extrapolates for values outside the range.
+/// to the corresponding values between and extrapolates for values outside the range.
 ///
-/// src_min and src_max must not be the same or division by zero accurs.
+/// src_min and src_max must not be the same or division by zero occurs.
 ///
 /// dest_max can be smaller than dest_min if you want the resulting range to be inverted, all values can be negative.
 ERASEABLE