Fix typo in Store.ts (#3385)

An immense contribution, I know.

### Change Type

<!--  Please select a 'Scope' label ️ -->

- [ x ] `docs` — Changes to the documentation, examples, or templates.

<!--  Please select a 'Type' label ️ -->

- [ x ] `chore` — Updating dependencies, other boring stuff
This commit is contained in:
Orion Reed 2024-04-08 01:06:24 -07:00 committed by GitHub
parent d01a2223be
commit 86403c1b0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -318,7 +318,7 @@ export class Store<R extends UnknownRecord = UnknownRecord, Props = unknown> {
onAfterCreate?: (record: R, source: 'remote' | 'user') => void
/**
* A callback before after each record's change.
* A callback fired before each record's change.
*
* @param prev - The previous value, if any.
* @param next - The next value.