chore: fix some typos (#40506)

This commit is contained in:
David Sanders
2023-11-12 19:51:56 -08:00
committed by GitHub
parent 262723e394
commit cf5f0419f1
16 changed files with 19 additions and 19 deletions

View File

@@ -86,15 +86,15 @@ class NotifyIconHost::MouseEnteredExitedDetector {
SendExitedEvent();
}
// If timer is runnig then cursor is arelady over icon and
// CheckCursorPositionOverIcon will be repeadly checking when to send
// If timer is running then cursor is already over icon and
// CheckCursorPositionOverIcon will be repeatedly checking when to send
// mouse exited event.
if (mouse_exit_timer_.IsRunning())
return;
SendEnteredEvent(icon);
// Start repeadly checking when to send mouse exited event.
// Start repeatedly checking when to send mouse exited event.
StartObservingIcon(icon);
}