From 698ce136227a9346003f92f59c42256571e7ad10 Mon Sep 17 00:00:00 2001 From: Matt Brophy Date: Thu, 25 Jul 2024 13:50:02 -0400 Subject: [PATCH] typo --- docs/guides/single-fetch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/single-fetch.md b/docs/guides/single-fetch.md index 884da73d54a..5571be0d4ec 100644 --- a/docs/guides/single-fetch.md +++ b/docs/guides/single-fetch.md @@ -299,7 +299,7 @@ For v2, you may still continue returning normal `Response` instances and their ` Over time, you should start eliminating returned Responses from your loaders and actions. - If your `loader`/`action` was returning `json`/`defer` without setting any `status`/`headers`, then you can just remove the call to `json`/`defer` and return the data directly -- If you `loader`/`action` was returning custom `status`/`headers` via `json`/`defer`, you should switch those to use the new [`unstable_data()`][data-utility] utility. +- If your `loader`/`action` was returning custom `status`/`headers` via `json`/`defer`, you should switch those to use the new [`unstable_data()`][data-utility] utility. ### Client Loaders