We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cd3b03 commit 9383169Copy full SHA for 9383169
Learn/week4/post-pydantic.md
@@ -27,7 +27,7 @@ def get_users():
27
- **Data location**: URL (query parameters)
28
- **Visible**: Data shows in browser address bar
29
- **Cacheable**: Browser can cache results
30
-- **Idempotent**: Calling it multiple times = same result
+- **Idempotent**: Calling it multiple times = same result
31
- **Should NOT modify data**: Only reads
32
33
**Real-world example:**
Learn/week5/db-integration.md
@@ -40,7 +40,7 @@ def create_todo(todo: TodoCreate):
40
todos_db.append(todo) # Stored in RAM
41
return todo
42
43
-# Problem: When you restart server...
+# Problem: When you restart server....
44
# todos_db = [] # ALL DATA IS GONE! 💥
45
```
46
0 commit comments