From 7aee3c161716fccbcc3a712ef50a0bc3b707d808 Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Sun, 20 Oct 2024 00:11:14 -0400 Subject: [PATCH] fix comment typo in InternalStorageService.ts --- packages/backend/src/core/InternalStorageService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/InternalStorageService.ts b/packages/backend/src/core/InternalStorageService.ts index 7d2ea6ba20..f7371f8e79 100644 --- a/packages/backend/src/core/InternalStorageService.ts +++ b/packages/backend/src/core/InternalStorageService.ts @@ -24,7 +24,7 @@ export class InternalStorageService { @Inject(DI.config) private config: Config, ) { - // No one should erase the working directly *while the server is running*. + // No one should erase the working directory *while the server is running*. fs.mkdirSync(path, { recursive: true }); }