includes: Fix various spelling errors (#270)

docs: fix some spelling errors

Related issue:
https://github.com/WerWolv/ImHex/issues/1139
This commit is contained in:
C3pa
2024-07-10 21:09:15 +02:00
committed by GitHub
parent 4299243e95
commit 5ff783d571
6 changed files with 21 additions and 21 deletions

View File

@@ -29,7 +29,7 @@ namespace auto std::mem {
using Section = u128;
/**
The Endianess of a value
The endianness of a value
*/
enum Endian : u8 {
Native = 0,
@@ -126,7 +126,7 @@ namespace auto std::mem {
Reads a unsigned value from the memory
@param address The address to read from
@param size The size of the value to read
@param [endian] The endianess of the value to read. Defaults to native
@param [endian] The endianness of the value to read. Defaults to native
@return The value read
*/
fn read_unsigned(u128 address, u8 size, Endian endian = Endian::Native) {
@@ -137,7 +137,7 @@ namespace auto std::mem {
Reads a signed value from the memory
@param address The address to read from
@param size The size of the value to read
@param [endian] The endianess of the value to read. Defaults to native
@param [endian] The endianness of the value to read. Defaults to native
@return The value read
*/
fn read_signed(u128 address, u8 size, Endian endian = Endian::Native) {