From a15a4e4a2d1b83468c25e89e580032d2d43a06bd Mon Sep 17 00:00:00 2001 From: Akshat Khosya Date: Sat, 16 Dec 2023 13:18:52 +0530 Subject: [PATCH] corrected typo error in comments --- packages/bruno-electron/src/ipc/collection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/ipc/collection.js b/packages/bruno-electron/src/ipc/collection.js index 534ea78c4..76bb661d8 100644 --- a/packages/bruno-electron/src/ipc/collection.js +++ b/packages/bruno-electron/src/ipc/collection.js @@ -91,7 +91,7 @@ const registerRendererEventHandlers = (mainWindow, watcher, lastOpenedCollection const brunoJsonFilePath = path.join(previousPath, 'bruno.json'); const content = fs.readFileSync(brunoJsonFilePath, 'utf8'); - //Chnage new name of collection + //Change new name of collection let json = JSON.parse(content); json.name = collectionName; const cont = await stringifyJson(json);