Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 2318731

Browse files
committed
Fix broken warning.
1 parent e4f57e7 commit 2318731

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

hyper/common/headers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ class HTTPHeaderMap(collections.MutableMapping):
4242
unusual encodings) while ensuring that users are never confused about what
4343
type of data they will receive.
4444
45-
..warning:: Note that this data structure makes none of the performance
46-
guarantees of a dictionary. Lookup and deletion is not an O(1)
47-
operation. Inserting a new value *is* O(1), all other
48-
operations are O(n), including *replacing* a header entirely.
45+
.. warning:: Note that this data structure makes none of the performance
46+
guarantees of a dictionary. Lookup and deletion is not an O(1)
47+
operation. Inserting a new value *is* O(1), all other
48+
operations are O(n), including *replacing* a header entirely.
4949
"""
5050
def __init__(self, *args, **kwargs):
5151
# The meat of the structure. In practice, headers are an ordered list

0 commit comments

Comments
 (0)