]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix docstring for `__rlshift__` 12583/head
authorAramís Segovia <aramissegovia@gmail.com>
Tue, 13 May 2025 17:20:32 +0000 (13:20 -0400)
committerAramís Segovia <aramissegovia@gmail.com>
Tue, 13 May 2025 17:20:32 +0000 (13:20 -0400)
lib/sqlalchemy/sql/operators.py

index 7c36bdc46963441b2ed46e5f65b77f5e39d8b06c..7e751e13d08d5aa7f41292867ce15af6ad81b986 100644 (file)
@@ -672,7 +672,7 @@ class ColumnOperators(Operators):
         return self.operate(lshift, other)
 
     def __rlshift__(self, other: Any) -> ColumnOperators:
-        """Implement the ``<<`` operator.
+        """Implement the ``<<`` operator in reverse.
 
         Not used by SQLAlchemy core, this is provided
         for custom operator systems which want to use