0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

Fix typos in 4.14 error references (#11711)

This commit is contained in:
Yan 2024-08-14 17:47:39 -03:00 committed by GitHub
parent 3adb473cdf
commit 057241f3a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1294,11 +1294,11 @@ export const RewriteWithBodyUsed = {
/** /**
* @docs * @docs
* @description * @description
* An unknown error occured while reading or writing files to disk. It can be caused by many things, eg. missing permissions or a file not existing we attempt to read. * An unknown error occurred while reading or writing files to disk. It can be caused by many things, eg. missing permissions or a file not existing we attempt to read.
*/ */
export const UnknownFilesystemError = { export const UnknownFilesystemError = {
name: 'UnknownFilesystemError', name: 'UnknownFilesystemError',
title: 'An unknown error occured while reading or writing files to disk.', title: 'An unknown error occurred while reading or writing files to disk.',
hint: 'It can be caused by many things, eg. missing permissions or a file not existing we attempt to read. Check the error cause for more details.', hint: 'It can be caused by many things, eg. missing permissions or a file not existing we attempt to read. Check the error cause for more details.',
} satisfies ErrorData; } satisfies ErrorData;