diff --git a/5-network/01-fetch/article.md b/5-network/01-fetch/article.md index 389827d9..6acd8cb5 100644 --- a/5-network/01-fetch/article.md +++ b/5-network/01-fetch/article.md @@ -130,6 +130,7 @@ If we've already got the response with `response.text()`, then `response.json()` ```js let text = await response.text(); // response body consumed let parsed = await response.json(); // fails (already consumed) +``` ```` ## Response headers