summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/user_guide/compatibility.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/user_guide/compatibility.md b/docs/user_guide/compatibility.md
index c7284fb..a2b3fdb 100644
--- a/docs/user_guide/compatibility.md
+++ b/docs/user_guide/compatibility.md
@@ -46,11 +46,11 @@ support wrapping an existing session object:
>>> from requests_cache import CachedSession
>>> from requests_futures.sessions import FuturesSession
->>> session = FutureSession(session=CachedSession())
+>>> session = FuturesSession(session=CachedSession())
```
-In this case, `FutureSession` must wrap `CachedSession` rather than the other way around, since
-`FutureSession` returns (as you might expect) futures rather than response objects.
+In this case, `FuturesSession` must wrap `CachedSession` rather than the other way around, since
+`FuturesSession` returns (as you might expect) futures rather than response objects.
See [issue #135](https://github.com/requests-cache/requests-cache/issues/135) for more notes on this.
## Requests-OAuthlib