diff --git a/docs/guides/samples/faq/status.cs b/docs/guides/samples/faq/status.cs index 8025dd7fd..18906c53b 100644 --- a/docs/guides/samples/faq/status.cs +++ b/docs/guides/samples/faq/status.cs @@ -1,5 +1,5 @@ public async Task ModifyStatus() { - await _client.SetStatus(UserStatus.Idle); - await _client.SetGame("Type !help for help"); + await _client.SetStatusAsync(UserStatus.Idle); + await _client.SetGameAsync("Type !help for help"); }