diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-10-04 09:55:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 09:55:03 (GMT) |
commit | 51ff48b8873d584811f4cad83c19f1edf484b7e4 (patch) | |
tree | 22633f494d84072c55d63ef24e314b48518220fb /doc | |
parent | 42549af4c83f4db09461dac6b500daa7e33752c6 (diff) | |
download | hdf5-51ff48b8873d584811f4cad83c19f1edf484b7e4.zip hdf5-51ff48b8873d584811f4cad83c19f1edf484b7e4.tar.gz hdf5-51ff48b8873d584811f4cad83c19f1edf484b7e4.tar.bz2 |
Fix several spelling/grammar issues (#3621) (#3632)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/getting-started-with-hdf5-development.md | 4 |
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 |