]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix a typo (#10620)
authorAleksandr Kiliushin <aleksandr.kiliushin@gmail.com>
Sun, 12 Nov 2023 09:32:05 +0000 (13:32 +0400)
committerFederico Caselli <cfederico87@gmail.com>
Sun, 12 Nov 2023 09:36:11 +0000 (10:36 +0100)
(cherry picked from commit fc6c2b19fd7f5cb89e0c405f5aa3b3360e4c4a93)

doc/build/intro.rst

index 02a546a86e1837acf1af37182bd6c8e5cd6072d5..46255e79f9d8966a70666ab7ab0a6240ac64d4e0 100644 (file)
@@ -42,7 +42,7 @@ augmented by ORM-specific automations and object-centric querying capabilities.
 Whereas working with Core and the SQL Expression language presents a
 schema-centric view of the database, along with a programming paradigm that is
 oriented around immutability, the ORM builds on top of this a domain-centric
-view of the database with a programming paradigm that is more explcitly
+view of the database with a programming paradigm that is more explicitly
 object-oriented and reliant upon mutability.  Since a relational database is
 itself a mutable service, the difference is that Core/SQL Expression language
 is command oriented whereas the ORM is state oriented.