diff --git a/CHANGELOG.md b/CHANGELOG.md index 64a3c4f5ed2..3824576c87b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,8 @@ [@evans](https://github.com/evans) in [#4213](https://github.com/apollographql/apollo-client/pull/4213)
[@danilobuerger](https://github.com/danilobuerger) in [#4214](https://github.com/apollographql/apollo-client/pull/4214)
[@stubailo](https://github.com/stubailo) in [#4220](https://github.com/apollographql/apollo-client/pull/4220)
- [@haysclark](https://github.com/haysclark) in [#4255](https://github.com/apollographql/apollo-client/pull/4255) + [@haysclark](https://github.com/haysclark) in [#4255](https://github.com/apollographql/apollo-client/pull/4255)
+ [@shelmire](https://github.com/shelmire) in [#4266](https://github.com/apollographql/apollo-client/pull/4266) ### Apollo Utilities (vNext) diff --git a/docs/source/advanced/caching.md b/docs/source/advanced/caching.md index 5bce7533738..0b23e4ecf07 100644 --- a/docs/source/advanced/caching.md +++ b/docs/source/advanced/caching.md @@ -21,7 +21,7 @@ After installing the package, you'll want to initialize the cache constructor. T ```js import { InMemoryCache } from 'apollo-cache-inmemory'; import { HttpLink } from 'apollo-link-http'; -import ApolloClient from 'apollo-client'; +import { ApolloClient } from 'apollo-client'; const cache = new InMemoryCache();