From 8fe5635d9d82b5ab9ad0efe2b59b73e61415bceb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 20 Jun 2020 13:59:23 +0100 Subject: [PATCH] Fix comments --- src/grib_nearest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_nearest.c b/src/grib_nearest.c index f2e4e2355..4112ab278 100644 --- a/src/grib_nearest.c +++ b/src/grib_nearest.c @@ -291,8 +291,8 @@ int grib_nearest_find_generic( return ret; nearest->values_count = nvalues; - // We need the radius to calculate the nearest distance. For an oblate earth - // approximate this using the average of the semimajor and semiminor axes + /* We need the radius to calculate the nearest distance. For an oblate earth + approximate this using the average of the semimajor and semiminor axes */ if ((ret = grib_get_double(h, radius_keyname, &radiusInMetres)) == GRIB_SUCCESS && !grib_is_missing(h, radius_keyname, &ret)) { radiusInKm = radiusInMetres/1000.0;