[svn-r702] Spelling corrections in comments. No changes to code.

This commit is contained in:
Frank Baker 1998-09-16 08:57:56 -05:00
parent f7b0fee6ef
commit 929051eae4
4 changed files with 5 additions and 5 deletions

View File

@ -126,7 +126,7 @@ main (void)
ret = H5Awrite(attr3, atype, string);
/*
* Close attribute and file datapsaces.
* Close attribute and file dataspaces.
*/
ret = H5Sclose(aid1);
ret = H5Sclose(aid2);

View File

@ -22,7 +22,7 @@ main(void)
double c;
} s1_t;
s1_t s1[LENGTH];
hid_t s1_tid; /* File datatype hadle */
hid_t s1_tid; /* File datatype identifier */
/* Second structure (subset of s1_t) and dataset*/
typedef struct s2_t {

View File

@ -45,7 +45,7 @@ main (void)
{3, 3} };
/*
* Create the data space with ulimited dimensions.
* Create the data space with unlimited dimensions.
*/
dataspace = H5Screate_simple(RANK, dims, maxdims);

View File

@ -1,7 +1,7 @@
/*
* This example reads hyperslab from the SDS.h5 file
* created by h5_write.c program into two-dimensional
* plane of the tree-dimensional array.
* plane of the three-dimensional array.
* Information about dataset in the SDS.h5 file is obtained.
*/
@ -74,7 +74,7 @@ main (void)
(unsigned long)(dims_out[0]), (unsigned long)(dims_out[1]));
/*
* Define hyperslab in the datatset.
* Define hyperslab in the dataset.
*/
offset[0] = 1;
offset[1] = 2;