diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-09-15 23:27:33 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-09-15 23:27:33 +0900 |
| commit | c1c955031e71312e00713874acc05fd15e1e9f55 (patch) | |
| tree | cf05729cd226c68d471099bd7bf45a0700fa1641 /src/tools | |
| parent | Follow requests page improvements (#5429) (diff) | |
| download | misskey-c1c955031e71312e00713874acc05fd15e1e9f55.tar.gz misskey-c1c955031e71312e00713874acc05fd15e1e9f55.tar.bz2 misskey-c1c955031e71312e00713874acc05fd15e1e9f55.zip | |
Fix typo - invalied (#5433)
* Fix typo - invelied
* fix Valied
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/resync-remote-user.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/resync-remote-user.ts b/src/tools/resync-remote-user.ts index 52f63cf1f1..c9d1ed588c 100644 --- a/src/tools/resync-remote-user.ts +++ b/src/tools/resync-remote-user.ts @@ -15,7 +15,7 @@ acct = acct.replace(/^@/, ''); // check args if (!acct.match(/^\w+@\w/)) { - throw `Invalied acct format. Valied format are user@host`; + throw `Invalid acct format. Valid format are user@host`; } console.log(`resync ${acct}`); |