Skip to content

Commit 3e3f3b0

Browse files
authored
Update get-started.md
1 parent 4e56538 commit 3e3f3b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/tutorials/get-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ from roblox import Client
3232
client = Client()
3333

3434
async def main():
35-
await client.get_user(1)
35+
user = await client.get_user(1)
3636

3737
asyncio.run(main())
3838
```
@@ -57,4 +57,4 @@ print("Description:", group.description)
5757

5858
To see a list of everything you can do with the client, see [`Client`][roblox.client.Client] in the Code Reference.
5959

60-
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).
60+
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).

0 commit comments

Comments
 (0)