diff --git a/docs/tutorials/get-started.md b/docs/tutorials/get-started.md index 4a2ea27a..25b384ce 100644 --- a/docs/tutorials/get-started.md +++ b/docs/tutorials/get-started.md @@ -32,7 +32,7 @@ from roblox import Client client = Client() async def main(): - await client.get_user(1) + user = await client.get_user(1) asyncio.run(main()) ``` @@ -57,4 +57,4 @@ print("Description:", group.description) To see a list of everything you can do with the client, see [`Client`][roblox.client.Client] in the Code Reference. -So far, we've been using ro.py **unauthenticated**. Basically, we aren't logged in to Roblox, which means we can't perform any actions, like updating our description, or access any sensitive information, like which game our friend is playing right now. Your next mission, if you choose to accept it, is [authenticating your client](./authentication.md). \ No newline at end of file +So far, we've been using ro.py **unauthenticated**. Basically, we aren't logged in to Roblox, which means we can't perform any actions, like updating our description, or access any sensitive information, like which game our friend is playing right now. Your next mission, if you choose to accept it, is [authenticating your client](./authentication.md).