Skip to content

Commit fd3d3fe

Browse files
authored
Update README.md
1 parent 238789e commit fd3d3fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.learn/exercises/08-delete-todo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The main difference is that `DELETE /todos/<position:int>` will receive the posi
77
```python
88
@app.route('/todos/<int:position>', methods=['DELETE'])
99
def delete_todo(position):
10-
print("This is the position to delete: ", position)
10+
print("This is the position to delete:", position)
1111
return 'something'
1212
```
1313

0 commit comments

Comments
 (0)