From f84ec090cbef1434705a89566ca123f73f94cbc7 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 15 Nov 2019 14:38:27 +0000 Subject: [PATCH] backticks in jsdoc Co-Authored-By: J. Ryan Stinnett --- src/crypto/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;