Corrected the UserAccountNotExistException documentation.

This commit is contained in:
AkjaHAsLk1IALk0MasH 2023-05-14 12:04:17 +07:00
parent c67d5cf152
commit 22d8575e01

View file

@ -619,7 +619,7 @@ namespace TShockAPI.DB
public class UserAccountNotExistException : UserAccountManagerException public class UserAccountNotExistException : UserAccountManagerException
{ {
/// <summary>Creates a new UserAccountNotExistException object, with the user account name in the message.</summary> /// <summary>Creates a new UserAccountNotExistException object, with the user account name in the message.</summary>
/// <param name="name">The user account name to be pasesd in the message.</param> /// <param name="name">The user account name to be passed in the message.</param>
/// <returns>A new UserAccountNotExistException object with a message containing the user account name that does not exist.</returns> /// <returns>A new UserAccountNotExistException object with a message containing the user account name that does not exist.</returns>
public UserAccountNotExistException(string name) public UserAccountNotExistException(string name)
: base(GetString($"User account {name} does not exist")) : base(GetString($"User account {name} does not exist"))