From 068ee391a2b88c1ff11faaa9228b9eec41748e89 Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Fri, 26 Nov 2021 16:17:55 +1100 Subject: [PATCH] Fix typo --- addons/docs/src/blocks/Story.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/docs/src/blocks/Story.tsx b/addons/docs/src/blocks/Story.tsx index 97c6b2e102cb..9e0ef93c17d4 100644 --- a/addons/docs/src/blocks/Story.tsx +++ b/addons/docs/src/blocks/Story.tsx @@ -165,7 +165,7 @@ const Story: FunctionComponent = (props) => { // (a) React's `useEffect` hook needs to fire. This is needed for React stories, as // decorators of the form `` will not actually execute `B` in the first // call to the story function. - // (b) The story function needs to acutally have been called. + // (b) The story function needs to actually have been called. // Certain frameworks (i.e.angular) don't actually render the component in the very first // React render cycle, so we need to wait for the framework to actually do that Promise.all([storyFnRan, rendered]).then(() => {