address spelling issues

This commit is contained in:
Axel Kohlmeyer 2020-09-07 08:03:41 -04:00
parent f8ebcc90fb
commit 0447616aaf
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
2 changed files with 6 additions and 5 deletions

View File

@ -1752,6 +1752,7 @@ Mattox
Mattson
maxangle
maxbond
maxchunk
maxelt
maxeval
maxfiles

View File

@ -56,11 +56,11 @@ using namespace LAMMPS_NS;
*
* The chunks are not returnable (i.e. cannot be freed individually).
* One can only reset and start over. The purpose of this
* class is to replace many small mallocs with a few large
* mallocs. Since the pages are never freed, they can be re-used
* without having to re-allocate them.
* class is to replace many small memory allocations via malloc() with
* a few large ones. Since the pages are never freed, they can be
* re-used without having to re-allocate them.
*
* The settings *maxchunk*, *pagesize*, and *pagedelta* contol
* The settings *maxchunk*, *pagesize*, and *pagedelta* control
* the memory allocation strategy. The *maxchunk* value represents
* the expected largest number of items per chunk. If there is
* less space left on the current page, a new page is allocated
@ -213,7 +213,7 @@ T *MyPage<T>::vget() {
* storage was not used. A following call to vget() will then reserve the
* same location again. It is an error if *N* > *maxchunk*.
*
* \param n Number of iterms used in previously reserved chunk */
* \param n Number of items used in previously reserved chunk */
template <class T>
void MyPage<T>::vgot(int n) {