diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-27 16:51:46 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-27 17:39:25 +0900 |
| commit | 1a7efa95f140286557f1edd2eedb0a37a505844c (patch) | |
| tree | ec99d28735b311ed0479dcbdec332441ad6c0b54 /src/api/endpoints/posts/polls | |
| parent | Fix typo: arleady -> already (diff) | |
| download | sharkey-1a7efa95f140286557f1edd2eedb0a37a505844c.tar.gz sharkey-1a7efa95f140286557f1edd2eedb0a37a505844c.tar.bz2 sharkey-1a7efa95f140286557f1edd2eedb0a37a505844c.zip | |
Fix English grammatical error
Diffstat (limited to 'src/api/endpoints/posts/polls')
| -rw-r--r-- | src/api/endpoints/posts/polls/vote.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/endpoints/posts/polls/vote.js b/src/api/endpoints/posts/polls/vote.js index c13772554a..fb348cafed 100644 --- a/src/api/endpoints/posts/polls/vote.js +++ b/src/api/endpoints/posts/polls/vote.js @@ -52,7 +52,7 @@ module.exports = (params, user) => return rej('invalid choice'); } - // Check already voted + // already voted const exist = await Vote.findOne({ post_id: post._id, user_id: user._id |