diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2024-08-05 10:09:12 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2024-08-05 10:09:12 -0400 |
| commit | 3496387ea4a71a9c56b3464bced5dd7296ddfed1 (patch) | |
| tree | bd0e547976bab09e45cf6b571f895407e7891dca /python/variable.py | |
| parent | ec1e1ef3b2355b7ccdb6b86448bb4608d89f3b5a (diff) | |
fix typo in Variable.name docs
Diffstat (limited to 'python/variable.py')
| -rw-r--r-- | python/variable.py | 2 |
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 |
