diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-10-04 09:55:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 09:55:15 (GMT) |
commit | 069688c3faf01607a9a7a1ddb8f26961d8b993a7 (patch) | |
tree | a6a8141136a17ab8ae0a62a9d8b60ea5fcea5ab1 /tools | |
parent | c423e74fbfbfe84497210e5b15db20bee8c84c3c (diff) | |
download | hdf5-069688c3faf01607a9a7a1ddb8f26961d8b993a7.zip hdf5-069688c3faf01607a9a7a1ddb8f26961d8b993a7.tar.gz hdf5-069688c3faf01607a9a7a1ddb8f26961d8b993a7.tar.bz2 |
Fix spelling (#3633)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/src/h5perf/perf.c | 2 | ||||
-rw-r--r-- | tools/src/h5repack/h5repack_copy.c | 2 | ||||
-rw-r--r-- | tools/test/h5dump/h5dumpgentest.c | 2 | ||||
-rw-r--r-- | tools/test/h5repack/h5repackgentest.c | 2 | ||||
-rw-r--r-- | tools/test/h5stat/CMakeTests.cmake | 2 | ||||
-rw-r--r-- | tools/test/h5stat/testh5stat.sh.in | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/tools/src/h5perf/perf.c b/tools/src/h5perf/perf.c index 3ef486e..741f483 100644 --- a/tools/src/h5perf/perf.c +++ b/tools/src/h5perf/perf.c @@ -289,7 +289,7 @@ main(int argc, char **argv) dataset = H5Dopen2(fid, "Dataset1", H5P_DEFAULT); VRFY((dataset >= 0), "H5Dopen succeeded", H5FATAL); - /* we can re-use the same mem_dataspace and file_dataspace + /* we can reuse the same mem_dataspace and file_dataspace * the H5Dwrite used since the dimension size is the same. */ diff --git a/tools/src/h5repack/h5repack_copy.c b/tools/src/h5repack/h5repack_copy.c index b92046f..39c21fb 100644 --- a/tools/src/h5repack/h5repack_copy.c +++ b/tools/src/h5repack/h5repack_copy.c @@ -416,7 +416,7 @@ done: * * hslab_nbytes_p : [OUT] total byte of the hyperslab * * Update: - * The hyperslab calucation would be depend on if the dataset is chunked + * The hyperslab calculation would be depend on if the dataset is chunked * or not. * * There care 3 conditions to cover: diff --git a/tools/test/h5dump/h5dumpgentest.c b/tools/test/h5dump/h5dumpgentest.c index 5e86d06..5c30753 100644 --- a/tools/test/h5dump/h5dumpgentest.c +++ b/tools/test/h5dump/h5dumpgentest.c @@ -11163,7 +11163,7 @@ gent_err_attr_dspace(void) hid_t fcpl = H5I_INVALID_HID; /* File access property list */ hid_t sid = H5I_INVALID_HID; /* Dataspace identifier */ hid_t aid = H5I_INVALID_HID; /* Attribute identifier */ - hsize_t dims = 2; /* Dimensino size */ + hsize_t dims = 2; /* Dimension size */ int wdata[2] = {7, 42}; /* The buffer to write */ int fd = -1; /* The file descriptor */ char val = 6; /* An invalid version */ diff --git a/tools/test/h5repack/h5repackgentest.c b/tools/test/h5repack/h5repackgentest.c index bc22e8d..d0b70ad 100644 --- a/tools/test/h5repack/h5repackgentest.c +++ b/tools/test/h5repack/h5repackgentest.c @@ -16,7 +16,7 @@ * + h5repack_<NAME>.h5 * + h5repack_<NAME>_ex.h5 * + h5repack_<NAME>_ex-<N>.dat - * ...where NAME idenfities the type, and N is a positive decimal number; + * ...where NAME identifies the type, and N is a positive decimal number; * multiple external files (*.dat) are allowed per file, but they must * follow the pattern and be in contiguous numerical sequence starting at 0. * diff --git a/tools/test/h5stat/CMakeTests.cmake b/tools/test/h5stat/CMakeTests.cmake index 14bb5ea..8802d0d 100644 --- a/tools/test/h5stat/CMakeTests.cmake +++ b/tools/test/h5stat/CMakeTests.cmake @@ -160,7 +160,7 @@ ADD_H5_TEST (h5stat_notexist 1 notexist.h5) ADD_H5_TEST (h5stat_nofile 1 '') -# Test file with groups, compressed datasets, user-applied fileters, etc. +# Test file with groups, compressed datasets, user-applied filters, etc. # h5stat_filters.h5 is a copy of ../../testfiles/tfilters.h5 as of release 1.8.0-alpha4 ADD_H5_TEST (h5stat_filters 0 h5stat_filters.h5) ADD_H5_TEST (h5stat_filters-file 0 -f h5stat_filters.h5) diff --git a/tools/test/h5stat/testh5stat.sh.in b/tools/test/h5stat/testh5stat.sh.in index 65e40c4..9ea6adc 100644 --- a/tools/test/h5stat/testh5stat.sh.in +++ b/tools/test/h5stat/testh5stat.sh.in @@ -256,7 +256,7 @@ TOOLTEST h5stat_help2.ddl --help TOOLTEST h5stat_notexist.ddl notexist.h5 TOOLTEST h5stat_nofile.ddl '' -# Test file with groups, compressed datasets, user-applied fileters, etc. +# Test file with groups, compressed datasets, user-applied filters, etc. # h5stat_filters.h5 is a copy of ../../testfiles/tfilters.h5 as of release 1.8.0-alpha4 TOOLTEST h5stat_filters.ddl h5stat_filters.h5 TOOLTEST h5stat_filters-file.ddl -f h5stat_filters.h5 |