From f1e2f46bef6638102caa4bd0a8cbcf2b6f0a838a Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 3 Nov 2015 17:24:26 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/LogLevel.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/websocket-sharp/LogLevel.cs b/websocket-sharp/LogLevel.cs index 5c9fdfe2..ef996772 100644 --- a/websocket-sharp/LogLevel.cs +++ b/websocket-sharp/LogLevel.cs @@ -4,7 +4,7 @@ * * The MIT License * - * Copyright (c) 2013-2014 sta.blockhead + * Copyright (c) 2013-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,32 +31,32 @@ using System; namespace WebSocketSharp { /// - /// Contains the values of the logging level. + /// Specifies the logging level. /// public enum LogLevel { /// - /// Indicates the bottom logging level. + /// Specifies the bottom logging level. /// Trace, /// - /// Indicates the 2nd logging level from the bottom. + /// Specifies the 2nd logging level from the bottom. /// Debug, /// - /// Indicates the 3rd logging level from the bottom. + /// Specifies the 3rd logging level from the bottom. /// Info, /// - /// Indicates the 3rd logging level from the top. + /// Specifies the 3rd logging level from the top. /// Warn, /// - /// Indicates the 2nd logging level from the top. + /// Specifies the 2nd logging level from the top. /// Error, /// - /// Indicates the top logging level. + /// Specifies the top logging level. /// Fatal }