Skip to content

Commit 4e305c4

Browse files
authored
docs(decisions): fix typos (#13807)
1 parent 7825c53 commit 4e305c4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,3 +401,4 @@
401401
- zeromask1337
402402
- zheng-chuang
403403
- zxTomw
404+
- kilavvy

decisions/0003-data-strategy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ We considered how to handle `shouldRevalidate` behavior. There's sort of 2 basic
141141

142142
I _think_ (1) is preferred to keep the API at a minimum and avoid leaking into _other_ ways to opt-out of revalidation. We already have an API for that so let's lean into it.
143143

144-
Additionally, another big con of (2) is that if we want to let them make revalidation decisions inside `dataStrategy` - we need to expose all of the informaiton required for that (`currentUrl`, `currentParams`, `nextUrl`, `nextParams`, `submission` info, `actionResult`, etc.) - the API becomes a mess.
144+
Additionally, another big con of (2) is that if we want to let them make revalidation decisions inside `dataStrategy` - we need to expose all of the information required for that (`currentUrl`, `currentParams`, `nextUrl`, `nextParams`, `submission` info, `actionResult`, etc.) - the API becomes a mess.
145145

146146
Therefore we are aiming to stick with one and let `shouldRevalidate` be the only way to opt-out of revalidation.
147147

decisions/0005-remixing-react-router.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ function NewErrorBoundary() {
204204
const error = useRouteError();
205205

206206
if (error instanceof Response) {
207-
return <MyOldCatchBoudnary error={error} />;
207+
return <MyOldCatchBoundary error={error} />;
208208
} else {
209209
return <MyOldErrorBoundary error={error} />;
210210
}

0 commit comments

Comments
 (0)