@@ -41,7 +41,7 @@ Package-Level Aliases
4141Legacy cqlengine defined a number of aliases at the package level, which became redundant
4242when the package was integrated for a driver. These have been removed in favor of absolute
4343imports, and referring to cannonical definitions. For example, ``cqlengine.ONE `` was an alias
44- of ``cassandra.ConsistencyLevel.ONE ``. In the integrated package, only the
44+ of ``cassandra.ConsistencyLevel.ONE ``. In the integrated package, only the
4545:class: `cassandra.ConsistencyLevel ` remains.
4646
4747Additionally, submodule aliases are removed from cqlengine in favor of absolute imports.
@@ -70,7 +70,7 @@ IfNotExistsWithCounterColumn cassandra.cqlengine.query
7070UnicodeMixin Consolidation
7171--------------------------
7272``class UnicodeMixin `` was defined in several cqlengine modules. This has been consolidated
73- to a single definition in the cqlengine package init file. This is not technically part of
73+ to a single definition in the cqlengine package init file. This is not technically part of
7474the API, but noted here for completeness.
7575
7676API Deprecations
@@ -97,7 +97,7 @@ The names for class attributes controlling model inheritance are changing. Chang
9797- Replace 'polymorphic_key' in the base class Column definition with :attr: `~.discriminator_column `
9898- Replace the '__polymorphic_key__' class attribute the derived classes with :attr: `~.__discriminator_value__ `
9999
100- The functionality is unchanged -- the intent here is to make the names and language around these attributes more precise.
100+ The functionality is unchanged -- the intent here is to make the names and language around these attributes more precise.
101101For now, the old names are just deprecated, and the mapper will emit warnings if they are used. The old names
102102will be removed in a future version.
103103
@@ -117,7 +117,7 @@ Before::
117117
118118 class Dog(Pet):
119119 __polymorphic_key__ = 'dog'
120-
120+
121121After::
122122
123123 class Pet(models.Model):
0 commit comments