Fix typos

This commit is contained in:
Andrea Gelmini
2020-04-14 20:57:09 +02:00
committed by Mészáros Mihály
parent da40742fd7
commit f9e3f9b622
4 changed files with 7 additions and 3 deletions
+4
View File
@@ -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);
+1 -1
View File
@@ -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', () =>
{