diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs
index 04b47123..4525c684 100644
--- a/websocket-sharp/Server/WebSocketServiceManager.cs
+++ b/websocket-sharp/Server/WebSocketServiceManager.cs
@@ -105,7 +105,7 @@ namespace WebSocketSharp.Server
///
///
/// A instance that provides the access to
- /// the information for the service, or if it's not found.
+ /// the information in the service, or if it's not found.
///
///
/// A that represents the absolute path to the service to find.
@@ -401,7 +401,7 @@ namespace WebSocketSharp.Server
/// An array of that represents the binary data to broadcast.
///
///
- /// A delegate that references the method(s) called when
+ /// An delegate that references the method(s) called when
/// the broadcast is complete.
///
public void BroadcastAsync (byte[] data, Action completed)
@@ -429,7 +429,7 @@ namespace WebSocketSharp.Server
/// A that represents the text data to broadcast.
///
///
- /// A delegate that references the method(s) called when
+ /// An delegate that references the method(s) called when
/// the broadcast is complete.
///
public void BroadcastAsync (string data, Action completed)
@@ -461,7 +461,7 @@ namespace WebSocketSharp.Server
/// An that represents the number of bytes to broadcast.
///
///
- /// A delegate that references the method(s) called when
+ /// An delegate that references the method(s) called when
/// the broadcast is complete.
///
public void BroadcastAsync (Stream stream, int length, Action completed)
@@ -561,7 +561,7 @@ namespace WebSocketSharp.Server
///
///
/// When this method returns, a instance that provides
- /// the access to the information for the service, or if it's not found.
+ /// the access to the information in the service, or if it's not found.
/// This parameter is passed uninitialized.
///
public bool TryGetServiceHost (string path, out WebSocketServiceHost host)