diff --git a/src/crypto/index.js b/src/crypto/index.js index 179ab684d..4b670d5a3 100644 --- a/src/crypto/index.js +++ b/src/crypto/index.js @@ -1178,7 +1178,7 @@ Crypto.prototype.saveDeviceList = function(delay) { Crypto.prototype.setDeviceVerification = async function( userId, deviceId, verified, blocked, known, ) { - // get rid of any undefined's here so we can just check + // get rid of any `undefined`s here so we can just check // for null rather than null or undefined if (verified === undefined) verified = null; if (blocked === undefined) blocked = null;