LUCENE-9047: fix typo in javadocs (still referred to big endian)

This commit is contained in:
Uwe Schindler 2021-09-19 13:51:51 +02:00 committed by GitHub
parent 5dfbef313c
commit f3c3b90e35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ public abstract class DataOutput {
/**
* Writes an int as four bytes.
*
* <p>32-bit unsigned integer written as four bytes, high-order bytes first.
* <p>32-bit unsigned integer written as four bytes, low-order bytes first.
*
* @see DataInput#readInt()
*/
@ -217,7 +217,7 @@ public abstract class DataOutput {
/**
* Writes a long as eight bytes.
*
* <p>64-bit unsigned integer written as eight bytes, high-order bytes first.
* <p>64-bit unsigned integer written as eight bytes, low-order bytes first.
*
* @see DataInput#readLong()
*/