diff options
author | Federico Caselli <cfederico87@gmail.com> | 2020-02-08 18:48:06 +0100 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2020-02-08 18:48:06 +0100 |
commit | f136cc893a2cd765c019654157af42aeb5135a1d (patch) | |
tree | eff1a7731d03af664fb66bb3f89263962effe7f0 /lib/sqlalchemy/sql/visitors.py | |
parent | 47aa62abde6eba67802f2f7126cc79fbd95b5d1a (diff) | |
download | sqlalchemy-f136cc893a2cd765c019654157af42aeb5135a1d.tar.gz |
fix documentation typos
Change-Id: I4376910ae1cf6bf27226f049d4cf2d0e6ba2a83b
Diffstat (limited to 'lib/sqlalchemy/sql/visitors.py')
-rw-r--r-- | lib/sqlalchemy/sql/visitors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/visitors.py b/lib/sqlalchemy/sql/visitors.py index cd1c7c696..c946bb4ab 100644 --- a/lib/sqlalchemy/sql/visitors.py +++ b/lib/sqlalchemy/sql/visitors.py @@ -180,7 +180,7 @@ class InternalTraversal(util.with_metaclass(_InternalTraversalType, object)): ] Above, the :class:`.Case` class indicates its internal state as the - attribtues named ``value``, ``whens``, and ``else\_``. They each + attributes named ``value``, ``whens``, and ``else\_``. They each link to an :class:`.InternalTraversal` method which indicates the type of datastructure referred towards. |