diff --git a/JOBot.TClient/Services/PrepareUserService.cs b/JOBot.TClient/Services/PrepareUserService.cs
index d83b666..db0fba7 100644
--- a/JOBot.TClient/Services/PrepareUserService.cs
+++ b/JOBot.TClient/Services/PrepareUserService.cs
@@ -18,7 +18,7 @@ public class PrepareUserService(ITelegramBotClient bot, User.UserClient userClie
/// Cancellation Token
/// RPC User Response
/// If something in server logic went wrong
- /// If update.Message is null
+ /// update.Message is null
public async Task RegisterUser(Update update, CancellationToken ct = default)
{
ArgumentNullException.ThrowIfNull(update.Message?.From);
@@ -54,7 +54,7 @@ public class PrepareUserService(ITelegramBotClient bot, User.UserClient userClie
///
/// Telegram Update object
/// Cancellation Token
- /// If update.Message is null
+ /// update.Message is null
public async Task AskForEulaAgreement(Update update, CancellationToken ct = default)
{
ArgumentNullException.ThrowIfNull(update.Message?.From);