X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Flib%2Fmath.qh;h=d8f19906a3eb26b1d9003e74f4493450f4b018d8;hb=2649e8e8c7377825bebcab773696955107d8995f;hp=f20b1c66e5bf120be7748737dabe8b9e8dec9f88;hpb=f67b2effcc9360ae443fc7da413d37b84e060e19;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/lib/math.qh b/qcsrc/lib/math.qh index f20b1c66e..d8f19906a 100644 --- a/qcsrc/lib/math.qh +++ b/qcsrc/lib/math.qh @@ -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