From 3496387ea4a71a9c56b3464bced5dd7296ddfed1 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 5 Aug 2024 10:09:12 -0400 Subject: fix typo in Variable.name docs --- python/variable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/variable.py b/python/variable.py index b9fff22d..8ed3f545 100644 --- a/python/variable.py +++ b/python/variable.py @@ -795,7 +795,7 @@ class Variable(CoreVariable): @property def name(self) -> str: - """Name of the variable, Settings thisslow because it ensures that analysis has been updated. """ + """Name of the variable, Settings this property is slow because it ensures that analysis has been updated. If you are renaming many variables, use :py:meth:`set_name_async`, then call :py:meth:`update_analysis` when complete.""" return core.BNGetVariableNameOrDefault(self._function.handle, self.to_BNVariable()) @name.setter -- cgit v1.3.1