diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-27 16:11:49 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-27 17:39:22 +0900 |
| commit | 78ad48dfc9051402ee45e0ef1d455648b82aac64 (patch) | |
| tree | 728848aac7e92dcf52bbcd733b42827a773bd521 /src | |
| parent | Fix typo: deperecated -> deprecated (diff) | |
| download | misskey-78ad48dfc9051402ee45e0ef1d455648b82aac64.tar.gz misskey-78ad48dfc9051402ee45e0ef1d455648b82aac64.tar.bz2 misskey-78ad48dfc9051402ee45e0ef1d455648b82aac64.zip | |
Fix typo: proccess -> process
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.ts b/src/index.ts index aee566be6b..937fef299a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -42,7 +42,7 @@ process.title = 'Misskey'; main(); /** - * Init proccess + * Init process */ function main() { if (cluster.isMaster) { @@ -53,7 +53,7 @@ function main() { } /** - * Init master proccess + * Init master process */ async function masterMain() { let initResult: InitResult; @@ -85,7 +85,7 @@ async function masterMain() { } /** - * Init worker proccess + * Init worker process */ function workerMain() { // start server |