From 497559f2bace1b5bc26f933b9a2630ea1191bb2c Mon Sep 17 00:00:00 2001 From: daveluff Date: Fri, 10 Oct 2003 15:14:09 +0000 Subject: [PATCH] Clarification of function comments in header file --- src/ATC/commlist.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ATC/commlist.hxx b/src/ATC/commlist.hxx index 74ee43a43..197f0334a 100644 --- a/src/ATC/commlist.hxx +++ b/src/ATC/commlist.hxx @@ -77,9 +77,9 @@ public: // The data found is written into the passed-in ATCData structure. bool FindByFreq( double lon, double lat, double elev, double freq, ATCData* ad, atc_type tp = INVALID ); - // query the database by location, lon and lat are - // in degrees, elev is in meters, range is in nautical miles. - // Returns the number of stations of the specified type that are in range, and pushes them into stations + // query the database by location, lon and lat are in degrees, elev is in meters, range is in nautical miles. + // Returns the number of stations of the specified atc_type tp that are in range of the position defined by + // lon, lat and elev, and pushes them into stations. // If no atc_type is specifed, returns the number of all stations in range, and pushes them into stations // ** stations is erased before use ** int FindByPos( double lon, double lat, double elev, double range, comm_list_type* stations, atc_type tp = INVALID );