From fe89ffe7563192a0b8f83b045f6e35fbed2a4a19 Mon Sep 17 00:00:00 2001 From: Muhammad Abdur Rakib <103581704+rifatrakib@users.noreply.github.com> Date: Fri, 14 Oct 2022 23:53:49 +0600 Subject: [PATCH] fix instances of objects as instances of classes (#8627) document mentions `creating instances of "User" and "Address" objects` which is a mistake as we create instances or objects from classes. --- doc/build/orm/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/orm/quickstart.rst b/doc/build/orm/quickstart.rst index 039bf3d703..5528ce631e 100644 --- a/doc/build/orm/quickstart.rst +++ b/doc/build/orm/quickstart.rst @@ -181,7 +181,7 @@ Create Objects and Persist --------------------------- We are now ready to insert data in the database. We accomplish this by -creating instances of ``User`` and ``Address`` objects, which have +creating instances of ``User`` and ``Address`` classes, which have an ``__init__()`` method already as established automatically by the declarative mapping process. We then pass them to the database using an object called a :ref:`Session `, -- 2.47.2