summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2024-08-05 10:09:12 -0400
committerJordan Wiens <jordan@psifertex.com>2024-08-05 10:09:12 -0400
commit3496387ea4a71a9c56b3464bced5dd7296ddfed1 (patch)
treebd0e547976bab09e45cf6b571f895407e7891dca /python
parentec1e1ef3b2355b7ccdb6b86448bb4608d89f3b5a (diff)
fix typo in Variable.name docs
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