[Glitch] Fix typo in typed_functions.ts comment

Port 066456ecdf6c8bff07827454f8e7c768b25b52d2 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Kenta Ishizaki 2026-05-05 13:54:34 +09:00 committed by Claire
parent 60b8db2b94
commit a9e05ea8ed

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.
*