Skip to content

Commit

Permalink
fix: fix the typo (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
guesung authored Jan 4, 2025
1 parent 6e879d6 commit 9276a34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/06.optimization/02.problem.cache/api.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function loader({
headers: {
'content-type': 'application/json',
// 🐨 add a cache-control header with a max-age=300
// to cache this respose for 300 seconds (5 minutes)
// to cache this response for 300 seconds (5 minutes)
},
})
}
Expand All @@ -28,7 +28,7 @@ export async function loader({
headers: {
'content-type': 'application/json',
// 🐨 add a cache-control header with a max-age=300
// to cache this respose for 300 seconds (5 minutes)
// to cache this response for 300 seconds (5 minutes)
},
})
}
Expand Down

0 comments on commit 9276a34

Please sign in to comment.