From f41b9cbcdb0b6116cc3e2d15f53983516d82b06d Mon Sep 17 00:00:00 2001 From: serzey Date: Tue, 16 Feb 2021 10:10:03 +0100 Subject: [PATCH] Update declarative_mixins.rst Variables ta and tb should be instances of TypeA and TypeB respectively. --- doc/build/orm/declarative_mixins.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/orm/declarative_mixins.rst b/doc/build/orm/declarative_mixins.rst index 560bda1341..a0229fe88b 100644 --- a/doc/build/orm/declarative_mixins.rst +++ b/doc/build/orm/declarative_mixins.rst @@ -352,7 +352,7 @@ attribute of each ``StringAttribute`` instance. argument ``strings``, a list of strings:: ta = TypeA(strings=['foo', 'bar']) - tb = TypeA(strings=['bat', 'bar']) + tb = TypeB(strings=['bat', 'bar']) This list will generate a collection of ``StringAttribute`` objects, which are persisted into a table that's -- 2.47.2