Browse Source

Merge pull request #76 from TakeScoop/curly-quotes

Use curly quotes in success message
JeongHoon Byun (aka Outsider) 7 years ago
parent
commit
f58609e7ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      routes/index.js

+ 1 - 1
routes/index.js

@@ -28,7 +28,7 @@ router.post('/invite', function(req, res) {
         if (body.ok) {
           res.render('result', {
             community: config.community,
-            message: 'Success! Check "'+ req.body.email +'" for an invite from Slack.'
+            message: 'Success! Check “'+ req.body.email +'” for an invite from Slack.'
           });
         } else {
           var error = body.error;