From 066456ecdf6c8bff07827454f8e7c768b25b52d2 Mon Sep 17 00:00:00 2001 From: Kenta Ishizaki <153918146+55728@users.noreply.github.com> Date: Tue, 5 May 2026 13:54:34 +0900 Subject: [PATCH] Fix typo in typed_functions.ts comment (#38590) --- app/javascript/mastodon/store/typed_functions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/store/typed_functions.ts b/app/javascript/mastodon/store/typed_functions.ts index 79bca08a52..b6f46db686 100644 --- a/app/javascript/mastodon/store/typed_functions.ts +++ b/app/javascript/mastodon/store/typed_functions.ts @@ -230,7 +230,7 @@ export function createDataLoadingThunk< ): ReturnType>; /** - * 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. *