From: terencehill Date: Fri, 30 Mar 2018 13:26:21 +0000 (+0200) Subject: Fix 2 typos X-Git-Tag: xonotic-v0.8.5~2215 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3f643f28e56cc1763625c1af53d0dc3946bd914b;p=xonotic%2Fxonotic-data.pk3dir.git Fix 2 typos --- 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