From d1b6ad2506081f26566b48e35d9c14dc6ee06202 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Wed, 12 Apr 2023 11:37:02 +0200 Subject: [PATCH] fix(readme): `something@email.com` to `something@mail.com` --- subjects/devops/object_to_json/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/devops/object_to_json/README.md b/subjects/devops/object_to_json/README.md index 8dceba4aa..ca91c278f 100644 --- a/subjects/devops/object_to_json/README.md +++ b/subjects/devops/object_to_json/README.md @@ -13,7 +13,7 @@ The new registration information comes as string formatted as JSON. You need to ```python class 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!