Correct the spelling of to_degrees

This commit is contained in:
Danny Robson 2012-05-03 15:56:21 +10:00
parent 4a745f870e
commit f8ad4c0c04

View File

@ -90,7 +90,7 @@ almost_equal (const Ta &a, const Tb &b)
const double PI = 3.141592653589793238462643;
inline double
to_degreees (double radians) {
to_degrees (double radians) {
return radians * 180 / PI;
}