From 1ca5c131952bb5a79b1ba3c442c3dcc867a94417 Mon Sep 17 00:00:00 2001 From: Cyrill Raccaud Date: Sun, 7 Jan 2024 17:38:38 +0100 Subject: [PATCH] Fix todo list delete item typo (#2032) Co-authored-by: Franck Nijhof --- docs/core/entity/todo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/entity/todo.md b/docs/core/entity/todo.md index b73608bd..4b224372 100644 --- a/docs/core/entity/todo.md +++ b/docs/core/entity/todo.md @@ -63,7 +63,7 @@ from homeassistant.components.todo import TodoListEntity class MyTodoListEntity(TodoListEntity): async def async_delete_todo_items(self, uids: list[str]) -> None: - """Add an item to the To-do list.""" + """Delete an item from the to-do list.""" ``` ### Update To-do items