diff --git a/websocket-sharp/Logger.cs b/websocket-sharp/Logger.cs
index bc7117f5..17850e67 100644
--- a/websocket-sharp/Logger.cs
+++ b/websocket-sharp/Logger.cs
@@ -37,16 +37,17 @@ namespace WebSocketSharp
///
///
///
- /// If you output a log with lower than the ,
+ /// If you output a log with lower than the value of the property,
/// it cannot be outputted.
///
///
- /// The default output action writes a log to the standard output stream and
- /// the if it has a valid path.
+ /// The default output action writes a log to the standard output stream and the log file
+ /// if the property has a valid path to it.
///
///
- /// If you would like to use the custom output action, you should set the
- /// to any Action<LogData, string> delegate.
+ /// If you would like to use the custom output action, you should set
+ /// the property to any Action<LogData, string>
+ /// delegate.
///
///
public class Logger
@@ -74,8 +75,8 @@ namespace WebSocketSharp
}
///
- /// Initializes a new instance of the class with the specified
- /// logging .
+ /// Initializes a new instance of the class with
+ /// the specified logging .
///
///
/// One of the enum values.
@@ -86,9 +87,9 @@ namespace WebSocketSharp
}
///
- /// Initializes a new instance of the class with the specified
- /// logging , path to the log , and
- /// action.
+ /// Initializes a new instance of the class with
+ /// the specified logging , path to the log ,
+ /// and action.
///
///
/// One of the enum values.
@@ -97,9 +98,9 @@ namespace WebSocketSharp
/// A that represents the path to the log file.
///
///
- /// An Action<LogData, string> delegate that references the method(s)
- /// used to output a log. A parameter passed to this delegate
- /// is .
+ /// An Action<LogData, string> delegate that references the method(s) used to
+ /// output a log. A parameter passed to this delegate is
+ /// .
///
public Logger (LogLevel level, string file, Action output)
{
@@ -162,7 +163,7 @@ namespace WebSocketSharp
///
/// An Action<LogData, string> delegate that references the method(s) used to
/// output a log. A parameter passed to this delegate is the value of
- /// the .
+ /// the property.
///
///
/// If the value to set is , the current output action is changed to