Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

docs(apollo-link): fix typo #1283

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion docs/source/stateful.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down