Clarify use of UCI options

Update README.md to clarify use of UCI options

closes https://github.com/official-stockfish/Stockfish/pull/3540

No functional change
This commit is contained in:
Stéphane Nicolet
2021-06-13 09:59:34 +02:00
parent b84fa04db6
commit 7819412002
2 changed files with 8 additions and 6 deletions

View File

@@ -148,7 +148,7 @@ namespace Stockfish::Eval::NNUE {
out[i] = read_little_endian<IntType>(stream);
}
// write_little_endian(s, out, N) : write integers in bulk to a little indian stream.
// write_little_endian(s, values, N) : write integers in bulk to a little indian stream.
// This takes N integers from array values and writes them on stream s.
template <typename IntType>
inline void write_little_endian(std::ostream& stream, const IntType* values, std::size_t count) {