diff --git a/websocket-sharp/ByteOrder.cs b/websocket-sharp/ByteOrder.cs
index de8d42ff..317f462e 100644
--- a/websocket-sharp/ByteOrder.cs
+++ b/websocket-sharp/ByteOrder.cs
@@ -4,7 +4,7 @@
*
* The MIT License
*
- * Copyright (c) 2012-2014 sta.blockhead
+ * Copyright (c) 2012-2015 sta.blockhead
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -31,16 +31,16 @@ using System;
namespace WebSocketSharp
{
///
- /// Contains the values that indicate whether the byte order is a Little-endian or Big-endian.
+ /// Specifies the byte order.
///
- public enum ByteOrder : byte
+ public enum ByteOrder
{
///
- /// Indicates a Little-endian.
+ /// Specifies Little-endian.
///
Little,
///
- /// Indicates a Big-endian.
+ /// Specifies Big-endian.
///
Big
}