diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-30 08:23:03 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-30 08:23:03 +0900 |
| commit | 4ff2661cc80c5b537e976d5afeb5286b9a1ee77c (patch) | |
| tree | 6a482f3362dce0cf89071f99afcf161574b1100a /src | |
| parent | Fix typo (diff) | |
| download | misskey-4ff2661cc80c5b537e976d5afeb5286b9a1ee77c.tar.gz misskey-4ff2661cc80c5b537e976d5afeb5286b9a1ee77c.tar.bz2 misskey-4ff2661cc80c5b537e976d5afeb5286b9a1ee77c.zip | |
Fix typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index 8a3a66e228..e43cb841d8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -178,7 +178,7 @@ async function init(): Promise<State> { checkDependencies(); if (process.platform === 'linux' && !isRoot() && config.port < 1024) { - Logger.error('You need root privilages to listen on port below 1024 on Linux'); + Logger.error('You need root privileges to listen on port below 1024 on Linux'); return State.failed; } |