Skip to content

Commit f471107

Browse files
committed
spelling
1 parent 06bc4f3 commit f471107

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/helpers/cache.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const buildCacheValue = (path: string, ext: string) => {
1111

1212
switch (true) {
1313
case isRoute:
14-
return buileRouteCacheValue(path)
14+
return buildRouteCacheValue(path)
1515
case isPage:
1616
return buildPageCacheValue(path, false)
1717
case isApp:
@@ -55,7 +55,7 @@ const buildFetchCacheValue = async (path: string) => {
5555
}
5656
}
5757

58-
const buileRouteCacheValue = async (path: string) => {
58+
const buildRouteCacheValue = async (path: string) => {
5959
try {
6060
const data = await readFile(`${BUILD_DIR}/.next/${path}.body`, 'utf8')
6161
const meta = await JSON.parse(await readFile(`${BUILD_DIR}/.next/${path}.meta`, 'utf8'))

0 commit comments

Comments
 (0)