Fixing typo in comment
authorDavid NĂ©grier <d.negrier@thecodingmachine.com>
Sat, 4 Apr 2020 20:35:20 +0000 (22:35 +0200)
committerGitHub <noreply@github.com>
Sat, 4 Apr 2020 20:35:20 +0000 (22:35 +0200)
back/src/Controller/IoSocketController.ts

index 5dbacdac97d2bed3457bdbcdfa54bcb14f1cf83f..3907436b630b6f064bf76b6225ba31b964db9e22 100644 (file)
@@ -11,7 +11,7 @@ export class IoSocketController{
     constructor(server : http.Server) {
         this.Io = socketIO(server);
 
-        //authentication with token. it will be decodes and stock in socket.
+        // Authentication with token. it will be decoded and stored in the socket.
         this.Io.use( (socket: Socket, next) => {
             if (!socket.handshake.query || !socket.handshake.query.token) {
                 return next(new Error('Authentication error'));
@@ -77,4 +77,4 @@ export class IoSocketController{
             return new Error(err);
         }
     }
-}
\ No newline at end of file
+}