Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES/1298.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Fixed ``CIMultiDictProxy`` documentation to state it inherits from
``MultiDictProxy`` (not ``MultiDict``), and fixed missing word in
``istr`` section -- by :user:`veeceey`.
4 changes: 2 additions & 2 deletions docs/multidict.rst
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ CIMultiDictProxy

Raises :exc:`TypeError` if *multidict* is not :class:`CIMultiDict` instance.

The class is inherited from :class:`MultiDict`.
The class is inherited from :class:`MultiDictProxy`.


Version
Expand Down Expand Up @@ -387,7 +387,7 @@ For more effective processing it should know if the *key* is already
case-folded to skip the :meth:`~str.lower()` call.

The performant code may create
case-folded string keys explicitly hand, e.g::
case-folded string keys explicitly by hand, e.g::

>>> key = istr('Key')
>>> key
Expand Down
Loading