Skip to content

Commit 9383169

Browse files
committed
New github action for week3 and week4
1 parent 4cd3b03 commit 9383169

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Learn/week4/post-pydantic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def get_users():
2727
- **Data location**: URL (query parameters)
2828
- **Visible**: Data shows in browser address bar
2929
- **Cacheable**: Browser can cache results
30-
- **Idempotent**: Calling it multiple times = same result
30+
- **Idempotent**: Calling it multiple times = same result
3131
- **Should NOT modify data**: Only reads
3232

3333
**Real-world example:**

Learn/week5/db-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def create_todo(todo: TodoCreate):
4040
todos_db.append(todo) # Stored in RAM
4141
return todo
4242

43-
# Problem: When you restart server...
43+
# Problem: When you restart server....
4444
# todos_db = [] # ALL DATA IS GONE! 💥
4545
```
4646

0 commit comments

Comments
 (0)