diff --git a/websocket-sharp/Net/AuthenticationSchemes.cs b/websocket-sharp/Net/AuthenticationSchemes.cs
index af0efb17..e8cd4957 100644
--- a/websocket-sharp/Net/AuthenticationSchemes.cs
+++ b/websocket-sharp/Net/AuthenticationSchemes.cs
@@ -2,13 +2,13 @@
/*
* AuthenticationSchemes.cs
*
- * This code is derived from System.Net.AuthenticationSchemes.cs of Mono
+ * This code is derived from AuthenticationSchemes.cs (System.Net) of Mono
* (http://www.mono-project.com).
*
* The MIT License
*
* Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
- * Copyright (c) 2012-2014 sta.blockhead
+ * Copyright (c) 2012-2016 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
@@ -42,25 +42,25 @@ using System;
namespace WebSocketSharp.Net
{
///
- /// Contains the values of the schemes for authentication.
+ /// Specifies the scheme for authentication.
///
[Flags]
public enum AuthenticationSchemes
{
///
- /// Indicates that no authentication is allowed.
+ /// No authentication is allowed.
///
None,
///
- /// Indicates digest authentication.
+ /// Specifies digest authentication.
///
Digest = 1,
///
- /// Indicates basic authentication.
+ /// Specifies basic authentication.
///
Basic = 8,
///
- /// Indicates anonymous authentication.
+ /// Specifies anonymous authentication.
///
Anonymous = 0x8000
}