From d5dd5416d7ad787d969e0e3f4a06d68449ff6d2a Mon Sep 17 00:00:00 2001 From: Nathaniel Tucker Date: Thu, 18 Jan 2024 13:25:35 +0000 Subject: [PATCH] docs: Fix typo on rest page --- docs/rest/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rest/README.md b/docs/rest/README.md index 80285b271db0..2add224c0272 100644 --- a/docs/rest/README.md +++ b/docs/rest/README.md @@ -147,7 +147,7 @@ TypeScript enforces the arguments specified with a prefixed colon like `:id` in ```ts // GET http://test.com/article/5 -TodoResource.get({ id: 5 }); +ArticleResource.get({ id: 5 }); ``` ## Bind the data with Suspense