From e1067fcce16ea367aaad1574b57781ea94a2211a Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Thu, 21 Sep 2023 08:49:35 +1200 Subject: [PATCH] Clarify that 'this' is 'this method', as per review feedback. --- ops/charm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ops/charm.py b/ops/charm.py index f68e9c12d..0e44b5784 100755 --- a/ops/charm.py +++ b/ops/charm.py @@ -519,7 +519,7 @@ def snapshot(self) -> Dict[str, Any]: def departing_unit(self) -> Optional[model.Unit]: """The :class:`ops.Unit` that is departing, if any. - Use this to determine (for example) whether this unit is the + Use this method to determine (for example) whether this unit is the departing one. """ # doing this on init would fail because `framework` gets patched in