Skip to content

Commit 9276a34

Browse files
authored
fix: fix the typo (#96)
1 parent 6e879d6 commit 9276a34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/06.optimization/02.problem.cache/api.server.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function loader({
1818
headers: {
1919
'content-type': 'application/json',
2020
// 🐨 add a cache-control header with a max-age=300
21-
// to cache this respose for 300 seconds (5 minutes)
21+
// to cache this response for 300 seconds (5 minutes)
2222
},
2323
})
2424
}
@@ -28,7 +28,7 @@ export async function loader({
2828
headers: {
2929
'content-type': 'application/json',
3030
// 🐨 add a cache-control header with a max-age=300
31-
// to cache this respose for 300 seconds (5 minutes)
31+
// to cache this response for 300 seconds (5 minutes)
3232
},
3333
})
3434
}

0 commit comments

Comments
 (0)