summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/variable.py2
1 files changed, 1 insertions, 1 deletions
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