diff --git a/src/JsonWebTokens/JwtHashAlgorithm.cs b/src/JsonWebTokens/JwtHashAlgorithm.cs
index 907f989..51a0bd6 100644
--- a/src/JsonWebTokens/JwtHashAlgorithm.cs
+++ b/src/JsonWebTokens/JwtHashAlgorithm.cs
@@ -1,7 +1,7 @@
namespace Jwt
{
///
- /// Represents the hashing algorithm being used used.
+ /// Specifies the hashing algorithm being used used.
///
public enum JwtHashAlgorithm
{
@@ -11,13 +11,13 @@ public enum JwtHashAlgorithm
HS256,
///
- /// Hash-based Message Authentication Code (HMAC) using SHA256.
+ /// Hash-based Message Authentication Code (HMAC) using SHA384.
///
HS384,
///
- /// Hash-based Message Authentication Code (HMAC) using SHA256.
+ /// Hash-based Message Authentication Code (HMAC) using SHA512.
///
HS512
}
-}
\ No newline at end of file
+}