Making the Endian enumeration follow the standard of CamelCase names.

This commit is contained in:
Jason Travis Smith
2016-04-14 15:08:31 -04:00
parent 4291a1ef5d
commit 6ff27de3c7
2 changed files with 12 additions and 12 deletions

View File

@ -40,15 +40,15 @@ pub enum LittleEndian
pub enum Endianess
{
/// Referes to BigEndian.
BIG,
Big,
/// Referes to LittleEndian.
LITTLE,
Little,
/// Referes to PlatformEndian. This can be anyone
/// of the other available endians depending on
/// the platform you are on.
PLATFORM
Platform
}