From f9e3f9b62295179ba6dbcfcf7c6106659e554cea Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Tue, 14 Apr 2020 20:57:09 +0200 Subject: [PATCH] Fix typos --- app/src/RoomClient.js | 4 ++++ app/src/__tests__/RoomClient.spec.js | 2 +- munin/mm-plugin | 2 +- server/config/config.example.js | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js index a05a5c7..5d816c6 100644 --- a/app/src/RoomClient.js +++ b/app/src/RoomClient.js @@ -283,7 +283,11 @@ export default class RoomClient _startKeyListener() { // Add keypress event listener on document +<<<<<<< HEAD document.addEventListener('keydown', (event) => +======= + document.addEventListener('keypress', (event) => +>>>>>>> 250679c... Fix typos { if (event.repeat) return; const key = String.fromCharCode(event.which); diff --git a/app/src/__tests__/RoomClient.spec.js b/app/src/__tests__/RoomClient.spec.js index 086e6a5..5e1191c 100644 --- a/app/src/__tests__/RoomClient.spec.js +++ b/app/src/__tests__/RoomClient.spec.js @@ -1,6 +1,6 @@ import RoomClient from '../RoomClient'; -describe('new RoomClient() without paramaters throws Error', () => +describe('new RoomClient() without parameters throws Error', () => { test('Matches the snapshot', () => { diff --git a/munin/mm-plugin b/munin/mm-plugin index d319ad1..978995b 100755 --- a/munin/mm-plugin +++ b/munin/mm-plugin @@ -42,7 +42,7 @@ fi if [ "$1" = "config" ]; then echo 'graph_title MM stats' #echo 'graph_args --base 1000 -l 0' - echo 'graph_vlabel Actual Seesion Count' + echo 'graph_vlabel Actual Session Count' echo 'graph_category other' echo 'graph_info This graph shows the mm stats.' echo 'rooms.label rooms' diff --git a/server/config/config.example.js b/server/config/config.example.js index ada1553..72403d7 100644 --- a/server/config/config.example.js +++ b/server/config/config.example.js @@ -59,7 +59,7 @@ module.exports = key : `${__dirname}/../certs/mediasoup-demo.localhost.key.pem` }, // listening Host or IP - // If ommitted listens on every IP. ("0.0.0.0" and "::") + // If omitted listens on every IP. ("0.0.0.0" and "::") //listeningHost: 'localhost', // Listening port for https server. listeningPort : 443,