Fix typo in typed_functions.ts comment (#38590)

This commit is contained in:
Kenta Ishizaki 2026-05-05 13:54:34 +09:00 committed by GitHub
parent e715531dd3
commit 066456ecdf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -230,7 +230,7 @@ export function createDataLoadingThunk<
): ReturnType<typeof createAsyncThunk<Args, Returned>>;
/**
* This function creates a Redux Thunk that handles loading data asynchronously (usually from the API), dispatching `pending`, `fullfilled` and `rejected` actions.
* This function creates a Redux Thunk that handles loading data asynchronously (usually from the API), dispatching `pending`, `fulfilled` and `rejected` actions.
*
* You can run a callback on the `onData` results to either dispatch side effects or modify the payload.
*