From ded829122738563ac12ba01d75035130dd2ae505 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 21:18:44 -0700 Subject: [PATCH] machine/nrf: fix 'occured' -> 'occurred' in comment Comment in src/machine/machine_nrf.go line 554 read 'Some error occured'. Fixed to 'occurred'. Comment-only change. Signed-off-by: SAY-5 --- src/machine/machine_nrf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/machine_nrf.go b/src/machine/machine_nrf.go index c36a062977..a7d1eeb08e 100644 --- a/src/machine/machine_nrf.go +++ b/src/machine/machine_nrf.go @@ -551,7 +551,7 @@ func handleSoftDeviceEvents() { return // TODO: nrf51 etc } if result != 0 { - // Some error occured. The only possible error is + // Some error occurred. The only possible error is // NRF_ERROR_NOT_FOUND, which means there are no more events. return }