Skip to content

Commit

Permalink
remove double "the"
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdoc committed Apr 7, 2024
1 parent b12653f commit d7dff91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Then there is the template; this uses the standard Django template language. You
### `ToDoItem` Component


Next, we create a `ToDoItem` component. As we have previously seen, there are public attributes to hold the the `title` and `done` status of the item. The load method takes a `ToDo` model instance (passed to it in the template above), then saves it as a private attribute on the component, and finally sets the `title` and `done` public attributes.
Next, we create a `ToDoItem` component. As we have previously seen, there are public attributes to hold the `title` and `done` status of the item. The load method takes a `ToDo` model instance (passed to it in the template above), then saves it as a private attribute on the component, and finally sets the `title` and `done` public attributes.

``` python
@default.register
Expand Down

0 comments on commit d7dff91

Please sign in to comment.