From: Aleksandr Kiliushin Date: Sun, 12 Nov 2023 09:32:05 +0000 (+0400) Subject: Fix a typo (#10620) X-Git-Tag: rel_2_0_24~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c53f2ca57a81060a508deca92bcc00cbcf170c0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix a typo (#10620) (cherry picked from commit fc6c2b19fd7f5cb89e0c405f5aa3b3360e4c4a93) --- diff --git a/doc/build/intro.rst b/doc/build/intro.rst index cac103ed83..709d56b7b8 100644 --- a/doc/build/intro.rst +++ b/doc/build/intro.rst @@ -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.