Skip to content

Commit

Permalink
Update get-started.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jmkd3v authored Aug 7, 2024
1 parent 4e56538 commit 3e3f3b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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())
```
Expand All @@ -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).
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 comments on commit 3e3f3b0

Please sign in to comment.