Skip to content

Commit a7c6cc4

Browse files
authored
Update README.es.md
1 parent fd3d3fe commit a7c6cc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ La principal diferencia es que `DELETE /todos/<position:int>` recibirá la posic
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)