diff --git a/src/g2_free.c b/src/g2_free.c index 0b2e4b46..e3b4981b 100644 --- a/src/g2_free.c +++ b/src/g2_free.c @@ -1,6 +1,6 @@ /** * @file - * @brief Free up memory that was allocated for struct gribfield. + * @brief Free up memory that was allocated for struct ::gribfield. * @author Stephen Gilbeert @date 2002-10-28 */ @@ -8,9 +8,9 @@ #include "grib2_int.h" /** - * Free memory that was allocated for struct gribfield. + * Free memory that was allocated for struct ::gribfield. * - * @param gfld pointer to gribfield structure (defined in include file + * @param gfld pointer to ::gribfield structure (defined in include file * grib2.h) returned from routine g2_getfld(). * * @note This routine must be called to free up memory used by the diff --git a/src/g2_getfld.c b/src/g2_getfld.c index 8dbdf1d8..e2520a34 100644 --- a/src/g2_getfld.c +++ b/src/g2_getfld.c @@ -11,9 +11,10 @@ * Return all the metadata, template values, bit-map * (if applicable), and the unpacked data for a data field. * - * All of the information returned is stored in a gribfield structure, - * which is defined in file grib2.h. Users of this routine will need - * to include grib2.h in their source code that calls this routine. + * All of the information returned is stored in a ::gribfield + * structure, which is defined in file grib2.h. Users of this routine + * will need to include grib2.h in their source code that calls this + * routine. * * Since there can be multiple data fields packed into a GRIB2 * message, the calling routine indicates which field is being @@ -40,7 +41,7 @@ * at gridpoints that are bitmapped out. (SEE REMARKS2) * - 0 do not expand data field, leaving it an array of consecutive * data points for each "1" in the bitmap. - * @param gfld pointer to structure gribfield containing all decoded + * @param gfld pointer to structure ::gribfield containing all decoded * data for the data field. * * @return @@ -62,7 +63,7 @@ * - ::G2_GETFLD_BAD_SEC7 Error unpacking Section 7. * - ::G2_GETFLD_NO_BITMAP Previous bitmap specified, yet none exists. * - * @note Struct gribfield is allocated by this routine and it also + * @note Struct ::gribfield is allocated by this routine and it also * contains pointers to many arrays of data that were allocated during * decoding. Users are encouraged to free up this memory, when it is * no longer needed, by an explicit call to routine g2_free(). diff --git a/src/g2_miss.c b/src/g2_miss.c index 5f6076b6..d668df59 100644 --- a/src/g2_miss.c +++ b/src/g2_miss.c @@ -12,7 +12,7 @@ * missing value management is used, and return the missing value(s) * in the data field. * - * @param gfld pointer to gribfield structure. + * @param gfld pointer to ::gribfield structure. * @param rmiss List of the missing values used. * @param nmiss NUmber of the missing values included in the * field. rmiss must be allocated in the calling program with enough diff --git a/src/grib2.h.in b/src/grib2.h.in index fd24b607..8faf92b8 100644 --- a/src/grib2.h.in +++ b/src/grib2.h.in @@ -40,7 +40,7 @@ typedef uint64_t g2intu; typedef float g2float; /** - * Struct for GRIB field. + * Struct for GRIB2 field. */ struct gribfield {