Skip to content

Commit 95fae2f

Browse files
authored
typos
1 parent e1fc528 commit 95fae2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cassandra/cluster.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1570,7 +1570,7 @@ def set_core_connections_per_host(self, host_distance, core_connections):
15701570
If :attr:`~.Cluster.protocol_version` is set to 3 or higher, this
15711571
is not supported (there is always one connection per host, unless
15721572
the host is remote and :attr:`connect_to_remote_hosts` is :const:`False`)
1573-
and using this will result in an :exc:`~.UnsupporteOperation`.
1573+
and using this will result in an :exc:`~.UnsupportedOperation`.
15741574
"""
15751575
if self.protocol_version >= 3:
15761576
raise UnsupportedOperation(
@@ -1603,7 +1603,7 @@ def set_max_connections_per_host(self, host_distance, max_connections):
16031603
If :attr:`~.Cluster.protocol_version` is set to 3 or higher, this
16041604
is not supported (there is always one connection per host, unless
16051605
the host is remote and :attr:`connect_to_remote_hosts` is :const:`False`)
1606-
and using this will result in an :exc:`~.UnsupporteOperation`.
1606+
and using this will result in an :exc:`~.UnsupportedOperation`.
16071607
"""
16081608
if self.protocol_version >= 3:
16091609
raise UnsupportedOperation(

0 commit comments

Comments
 (0)