summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-04-30 13:00:47 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-04-30 21:28:04 -0500
commit0496969588e506d538b228b5d75bf63dddcde6ca (patch)
tree5991328933cef88a3779602dffa8be4bbb05e23d /docs
parentb00726f3a8774ee1ef7d4c2d85cb0d8077ed3e02 (diff)
downloadrequests-cache-0496969588e506d538b228b5d75bf63dddcde6ca.tar.gz
Fix a typo in the docs
Diffstat (limited to 'docs')
-rw-r--r--docs/advanced_usage.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/advanced_usage.rst b/docs/advanced_usage.rst
index ead36fc..087c9b1 100644
--- a/docs/advanced_usage.rst
+++ b/docs/advanced_usage.rst
@@ -187,7 +187,7 @@ is provided, so you can create a custom class with behavior from multiple Sessio
>>> from requests_cache import CacheMixin
>>> from some_other_lib import SomeOtherMixin
>>>
- >>> class CustomSession(CacheMixin, SomeOtherMixin ClientSession):
+ >>> class CustomSession(CacheMixin, SomeOtherMixin, Session):
... """Session class with features from both requests-html and requests-cache"""
Requests-HTML