diff --git a/Coding-Style.md b/Coding-Style.md index ee201b7..21fe10a 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -25,4 +25,4 @@ We recommend to follow these guidelines when writing code for RPCS3. They aren't * Allocate memory with *MemoryAllocator*. * Don't forget to switch endianness: That is, allocate `u32` with `MemoryAllocator>` * Switch endianness on compile time if possible: - * When comparing the type `be_t x` with the constant `y`, use: `x.ToBE()` and `se32(y)` respectively to gain speed by switching the endianness of the constant in compilation time. \ No newline at end of file + * When comparing `be_t x` with the constant `y`, use: `x.ToBE()` and `se32(y)` respectively to gain speed by switching endianness on `y` in compilation time. \ No newline at end of file