Skip to content

Commit e594388

Browse files
author
Kevin Deldycke
committed
Remove trailing spaces.
1 parent 37eb549 commit e594388

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/cqlengine/upgrade_guide.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Package-Level Aliases
4141
Legacy cqlengine defined a number of aliases at the package level, which became redundant
4242
when the package was integrated for a driver. These have been removed in favor of absolute
4343
imports, 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

4747
Additionally, submodule aliases are removed from cqlengine in favor of absolute imports.
@@ -70,7 +70,7 @@ IfNotExistsWithCounterColumn cassandra.cqlengine.query
7070
UnicodeMixin 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
7474
the API, but noted here for completeness.
7575

7676
API 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.
101101
For now, the old names are just deprecated, and the mapper will emit warnings if they are used. The old names
102102
will be removed in a future version.
103103

@@ -117,7 +117,7 @@ Before::
117117

118118
class Dog(Pet):
119119
__polymorphic_key__ = 'dog'
120-
120+
121121
After::
122122

123123
class Pet(models.Model):

0 commit comments

Comments
 (0)