From 3956d0ceeb1a0e2a123319b68c5c347d50e5790b Mon Sep 17 00:00:00 2001 From: Andrew Sayre <6730289+andrewsayre@users.noreply.github.com> Date: Mon, 20 Jan 2025 04:52:10 +0000 Subject: [PATCH] Correct docstring typo --- homeassistant/components/heos/media_player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/heos/media_player.py b/homeassistant/components/heos/media_player.py index 6de458cce40..67a837b2888 100644 --- a/homeassistant/components/heos/media_player.py +++ b/homeassistant/components/heos/media_player.py @@ -100,7 +100,7 @@ type _ReturnFuncType[**_P] = Callable[_P, Coroutine[Any, Any, None]] def catch_action_error[**_P]( action: str, ) -> Callable[[_FuncType[_P]], _ReturnFuncType[_P]]: - """Return decorator that caches errors and raises HomeAssistantError.""" + """Return decorator that catches errors and raises HomeAssistantError.""" def decorator(func: _FuncType[_P]) -> _ReturnFuncType[_P]: @wraps(func)