Skip to content

Commit 3496387

Browse files
committed
fix typo in Variable.name docs
1 parent ec1e1ef commit 3496387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/variable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ def var_name_and_type(self) -> VariableNameAndType:
795795

796796
@property
797797
def name(self) -> str:
798-
"""Name of the variable, Settings thisslow because it ensures that analysis has been updated. """
798+
"""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."""
799799
return core.BNGetVariableNameOrDefault(self._function.handle, self.to_BNVariable())
800800

801801
@name.setter

0 commit comments

Comments
 (0)