From 6e942a11218760829fd7b34b893306abf4041ef3 Mon Sep 17 00:00:00 2001 From: Mendel Konikov Date: Fri, 23 Feb 2018 11:11:41 -0500 Subject: [PATCH] Fix typos in comments --- plugins/talk-plugin-google-auth/server/router.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/talk-plugin-google-auth/server/router.js b/plugins/talk-plugin-google-auth/server/router.js index 89977f35b..d369505af 100644 --- a/plugins/talk-plugin-google-auth/server/router.js +++ b/plugins/talk-plugin-google-auth/server/router.js @@ -2,7 +2,7 @@ module.exports = router => { const { passport, HandleAuthPopupCallback } = require('services/passport'); /** - * Google auth endpoint, this will redirect the user immediatly to google + * Google auth endpoint, this will redirect the user immediately to google * for authorization. */ router.get( @@ -16,7 +16,7 @@ module.exports = router => { /** * Google 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/google/callback', (req, res, next) => { // Perform the google login flow and pass the data back through the opener.