Merge pull request #475 from timgates42/bugfix_typo_minimum

docs: fix simple typo, minumum -> minimum
This commit is contained in:
Yann Collet 2020-11-20 08:38:53 -08:00 committed by GitHub
commit 5cb67d338a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ extern "C" {
* @brief Disables the AVX sanity check.
*
* Don't compile xxh_x86dispatch.c with options like `-mavx*`, `-march=native`,
* or `/arch:AVX*`. It is intended to be compiled for the minumum target, and
* or `/arch:AVX*`. It is intended to be compiled for the minimum target, and
* it selectively enables SSE2, AVX2, and AVX512 when it is needed.
*
* Using this option _globally_ allows this feature, and therefore makes it

View File

@ -2824,7 +2824,7 @@ enum XXH_VECTOR_TYPE /* fake enum */ {
};
/*!
* @ingroup tuning
* @brief Selects the minumum alignment for XXH3's accumulators.
* @brief Selects the minimum alignment for XXH3's accumulators.
*
* When using SIMD, this should match the alignment reqired for said vector
* type, so, for example, 32 for AVX2.