summaryrefslogtreecommitdiff
path: root/packages/backend/src
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2024-10-20 00:11:14 -0400
committerHazelnoot <acomputerdog@gmail.com>2024-10-20 00:11:14 -0400
commit7aee3c161716fccbcc3a712ef50a0bc3b707d808 (patch)
tree0dcd2b2c944c0c862369239c554bb3eeb06d8f26 /packages/backend/src
parentpre-create the `files` directory to reduce IO operations (diff)
downloadsharkey-7aee3c161716fccbcc3a712ef50a0bc3b707d808.tar.gz
sharkey-7aee3c161716fccbcc3a712ef50a0bc3b707d808.tar.bz2
sharkey-7aee3c161716fccbcc3a712ef50a0bc3b707d808.zip
fix comment typo in InternalStorageService.ts
Diffstat (limited to 'packages/backend/src')
-rw-r--r--packages/backend/src/core/InternalStorageService.ts2
1 files changed, 1 insertions, 1 deletions
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 });
}