Skip to content

Commit cbf0eba

Browse files
authored
Fix typo in docs (logaretm#120)
1 parent 6b5a5ef commit cbf0eba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/api/use-subscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `useSubscription` function returns the following properties and functions:
1616
| error | `Ref<CombinedError>` | Any errors encountered during mutation execution |
1717
| execute | `({variables: object}) => Promise<OperationResult<TData>>` | Executes the mutation and returns the operation result containing `data` and `error` values |
1818
| isPaused | `Ref<boolean>` | True if the subscription is paused or inactive |
19-
| paused | `() => void` | Deactivates the subscription temporarily until `resume` is called |
19+
| pause | `() => void` | Deactivates the subscription temporarily until `resume` is called |
2020
| resume | `() => void` | Activates the subscription |
2121

2222
## Usage

0 commit comments

Comments
 (0)