summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-10-03 16:01:28 (GMT)
committerGitHub <noreply@github.com>2023-10-03 16:01:28 (GMT)
commit34fcb9c5a480c70d43c85373850f91d079b3a179 (patch)
tree13a646eecb112484660e792239808efb94c34ef1 /doc
parent4261552068d5ffd7bd708db92aea99793a1bcf2a (diff)
downloadhdf5-34fcb9c5a480c70d43c85373850f91d079b3a179.zip
hdf5-34fcb9c5a480c70d43c85373850f91d079b3a179.tar.gz
hdf5-34fcb9c5a480c70d43c85373850f91d079b3a179.tar.bz2
Fix several spelling/grammar issues (#3621)
Diffstat (limited to 'doc')
-rw-r--r--doc/getting-started-with-hdf5-development.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/getting-started-with-hdf5-development.md b/doc/getting-started-with-hdf5-development.md
index 3754df7..b6771dc 100644
--- a/doc/getting-started-with-hdf5-development.md
+++ b/doc/getting-started-with-hdf5-development.md
@@ -496,7 +496,7 @@ files at configure time by the `bin/make_err` script. The original intent was fo
codes to be strongly associated. i.e., a given minor code would *only* be used
with its associated major code. Unfortunately, this has not been the case in
practice, and the emitted text can appear nonsensical in error
-stack dumps. Even worse, the major and minor error codes are used inconsitently
+stack dumps. Even worse, the major and minor error codes are used inconsistently
throughout the library, making interpreting them almost impossible for
external users. We hope to address this deficiency in the near future.
@@ -556,7 +556,7 @@ configure/CMake options, but it's normally easier to use external tools like
valgrind or the compiler's memory debugging options.
`H5FL` provides memory pools (*Free Lists*) that create a set of fixed-size allocations
-of a certain type that the library will re-use as needed. They use `H5MM` calls
+of a certain type that the library will reuse as needed. They use `H5MM` calls
under the hood and can be useful when the library creates and frees a lot of
objects of that type. It's difficult to give a good guideline as to when to use
the `H5FL` calls and when to use the `H5MM` calls, but it's probably best to