diff --git a/docs/source/stateful.md b/docs/source/stateful.md index 3196454cb9..930e6ad25a 100644 --- a/docs/source/stateful.md +++ b/docs/source/stateful.md @@ -4,7 +4,7 @@ title: Stateful Links ## Stateful Links -Links are created and shared between every request in your application. Some links may share state between requests to provided added functionality. The links are called stateful links and are written using the `ApolloLink` interface. The alternative way to write links is a [stateless link](/stateless/). +Links are created and shared between every request in your application. Some links may share state between requests to provide added functionality. The links are called stateful links and are written using the `ApolloLink` interface. The alternative way to write links is a [stateless link](/stateless/). Stateful links typically (though are not required to) overwrite the constructor of `ApolloLink` and are required to implement a `request` function with the same signature as a stateless link. For example: