From 5313704d846066e559093601b61d33dbac5a92da Mon Sep 17 00:00:00 2001 From: Yash Date: Sat, 14 Jun 2025 13:25:21 +0530 Subject: [PATCH] Fix watcher error message typo --- packages/bruno-electron/src/app/watcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/app/watcher.js b/packages/bruno-electron/src/app/watcher.js index a2f91d953..05fe9ebe8 100644 --- a/packages/bruno-electron/src/app/watcher.js +++ b/packages/bruno-electron/src/app/watcher.js @@ -565,7 +565,7 @@ class Watcher { `\nCould not start watcher for ${watchPath}:`, 'ENOSPC: System limit for number of file watchers reached!', 'Trying again with polling, this will be slower!\n', - 'Update you system config to allow more concurrently watched files with:', + 'Update your system config to allow more concurrently watched files with:', '"echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"' ); this.addWatcher(win, watchPath, collectionUid, brunoConfig, true, useWorkerThread);