diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2024-10-20 00:11:14 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2024-10-20 00:11:14 -0400 |
| commit | 7aee3c161716fccbcc3a712ef50a0bc3b707d808 (patch) | |
| tree | 0dcd2b2c944c0c862369239c554bb3eeb06d8f26 /packages/backend/src | |
| parent | pre-create the `files` directory to reduce IO operations (diff) | |
| download | sharkey-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.ts | 2 |
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 }); } |