From 7fd83ea5f80cabc1f8e189ace16855f10580aa84 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 09:59:38 -0700 Subject: [PATCH] Fix 'occured' -> 'occurred' typo in portfs root-delete comment Inline comment in watchman/watcher/portfs.cpp explaining the root-delete handling read 'occured'. Doc-only change inside a comment in the Solaris portfs watcher. --- watchman/watcher/portfs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watchman/watcher/portfs.cpp b/watchman/watcher/portfs.cpp index 17339b8d652b..17a315d530f8 100644 --- a/watchman/watcher/portfs.cpp +++ b/watchman/watcher/portfs.cpp @@ -294,7 +294,7 @@ bool PortFSWatcher::waitNotify(int timeoutms) { return false; } if (pfd[1].revents) { - // An exceptional event (delete) occured on the root so delete it + // An exceptional event (delete) occurred on the root so delete it root_deleted = true; return true; }