diff --git a/TShockAPI/DB/UserManager.cs b/TShockAPI/DB/UserManager.cs
index 9a6cc08d..3696a179 100755
--- a/TShockAPI/DB/UserManager.cs
+++ b/TShockAPI/DB/UserManager.cs
@@ -462,17 +462,17 @@ namespace TShockAPI.DB
}
///
- /// A dictionary of hashing algortihms and an implementation object.
+ /// A dictionary of hashing algorithms and an implementation object.
///
protected internal readonly Dictionary> HashTypes = new Dictionary>
- {
- {"sha512", () => new SHA512Managed()},
- {"sha256", () => new SHA256Managed()},
- {"md5", () => new MD5Cng()},
- {"sha512-xp", () => SHA512.Create()},
- {"sha256-xp", () => SHA256.Create()},
- {"md5-xp", () => MD5.Create()},
- };
+ {
+ {"sha512", () => new SHA512Managed()},
+ {"sha256", () => new SHA256Managed()},
+ {"md5", () => new MD5Cng()},
+ {"sha512-xp", () => SHA512.Create()},
+ {"sha256-xp", () => SHA256.Create()},
+ {"md5-xp", () => MD5.Create()},
+ };
///
/// Returns a hashed string for a given string based on the config file's hash algo