From 898e28fe1be91a2fec8614525888ca39a5bc891f Mon Sep 17 00:00:00 2001 From: Mendel Konikov Date: Fri, 23 Feb 2018 08:27:21 -0500 Subject: [PATCH] Typos in comments --- plugins/talk-plugin-facebook-auth/server/router.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/talk-plugin-facebook-auth/server/router.js b/plugins/talk-plugin-facebook-auth/server/router.js index 53b6c7e56..b5232c5e9 100644 --- a/plugins/talk-plugin-facebook-auth/server/router.js +++ b/plugins/talk-plugin-facebook-auth/server/router.js @@ -2,7 +2,7 @@ module.exports = router => { const { passport, HandleAuthPopupCallback } = require('services/passport'); /** - * Facebook auth endpoint, this will redirect the user immediatly to facebook + * Facebook auth endpoint, this will redirect the user immediately to facebook * for authorization. */ router.get( @@ -16,7 +16,7 @@ module.exports = router => { /** * Facebook callback endpoint, this will send the user a html page designed to - * send back the user credentials upon sucesfull login. + * send back the user credentials upon sucessful login. */ router.get('/api/v1/auth/facebook/callback', (req, res, next) => { // Perform the facebook login flow and pass the data back through the opener.