Skip to content

Commit 571f77a

Browse files
Copilotmykaul
andcommitted
Fix Sphinx reference syntax and typo in protocol.rst
- Fix extra colon in Sphinx reference (::meth: -> :meth:) - Fix typo in class name (NumpyProtocolHander -> NumpyProtocolHandler) Co-authored-by: mykaul <[email protected]>
1 parent f6d4b2b commit 571f77a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api/cassandra/protocol.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ holding custom key/value pairs.
1616
By default these are ignored by the server. They can be useful for servers implementing
1717
a custom QueryHandler.
1818

19-
See :meth:`.Session.execute`, ::meth:`.Session.execute_async`, :attr:`.ResponseFuture.custom_payload`.
19+
See :meth:`.Session.execute`, :meth:`.Session.execute_async`, :attr:`.ResponseFuture.custom_payload`.
2020

2121
.. autoclass:: _ProtocolHandler
2222

@@ -53,5 +53,5 @@ These protocol handlers comprise different parsers, and return results as descri
5353
- LazyProtocolHandler: near drop-in replacement for the above, except that it returns an iterator over rows,
5454
lazily decoded into the default row format (this is more efficient since all decoded results are not materialized at once)
5555

56-
- NumpyProtocolHander: deserializes results directly into NumPy arrays. This facilitates efficient integration with
56+
- NumpyProtocolHandler: deserializes results directly into NumPy arrays. This facilitates efficient integration with
5757
analysis toolkits such as Pandas.

0 commit comments

Comments
 (0)