diff options
author | Nao Pross <np@0hm.ch> | 2024-03-20 11:45:00 +0100 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2024-03-20 11:45:00 +0100 |
commit | 433b9dc26944347e89b23d3bb358de28e070f16a (patch) | |
tree | 6c714f6eb1a840c8e67b6484c63fa5c04486ad9a | |
parent | Remove Expression.__getattr__ to avoid unexpected behaviour (diff) | |
download | mdpoly-433b9dc26944347e89b23d3bb358de28e070f16a.tar.gz mdpoly-433b9dc26944347e89b23d3bb358de28e070f16a.zip |
Reword comment
-rw-r--r-- | mdpoly/expressions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdpoly/expressions.py b/mdpoly/expressions.py index 71c94b2..d9c7d8c 100644 --- a/mdpoly/expressions.py +++ b/mdpoly/expressions.py @@ -29,7 +29,7 @@ if TYPE_CHECKING: @dataclass class Expression: - """ Monadic wrapper around :py:class:`mdpoly.abc.Expr` that adds operator + """ Wrapper around :py:class:`mdpoly.abc.Expr` that adds operator overloading and operations to expression objects. """ expr: Expr |