From 9ff8e4367d7cd8297888cabcf343db36516170d7 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 19 Dec 2005 15:52:50 +0000 Subject: [PATCH] fix typos in comments/debugging output. --- src/Airports/GenAirports/elevations.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Airports/GenAirports/elevations.cxx b/src/Airports/GenAirports/elevations.cxx index 4588dd43..fba95d24 100644 --- a/src/Airports/GenAirports/elevations.cxx +++ b/src/Airports/GenAirports/elevations.cxx @@ -140,7 +140,7 @@ double tgAverageElevation( const string &root, const string_list elev_src, } -// lookup node elevations for each point in the specified nurbs++ +// lookup node elevations for each point in the specified simple // matrix. Returns average of all points. void tgCalcElevations( const string &root, const string_list elev_src, @@ -245,7 +245,7 @@ void tgCalcElevations( const string &root, const string_list elev_src, } } double grid_average = total / (double) count; - SG_LOG(SG_GENERAL, SG_DEBUG, "Average surface height of nurbs matrix = " + SG_LOG(SG_GENERAL, SG_DEBUG, "Average surface height of matrix = " << grid_average); }