fix(readme): `something@email.com` to `something@mail.com`

This commit is contained in:
Christopher Fremond 2023-04-12 11:37:02 +02:00 committed by GitHub
parent 2ba35afd50
commit d1b6ad2506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ The new registration information comes as string formatted as JSON. You need to
```python ```python
class User: class User:
username = 'user' username = 'user'
email = 'something@email.com' email = 'something@mail.com'
``` ```
2. `user_to_json` that will receive a `User` and will return the object as a string in JSON format. Be aware of the Python types that can be converted to JSON! 2. `user_to_json` that will receive a `User` and will return the object as a string in JSON format. Be aware of the Python types that can be converted to JSON!