From e3c66a23c76731e7b760936862fd209dc7aa11fb Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:26:27 -0500 Subject: [PATCH] spelling: dereference Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/normal/app_inbox_service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/services/normal/app_inbox_service.c b/src/fw/services/normal/app_inbox_service.c index e7e55b29..789dda5d 100644 --- a/src/fw/services/normal/app_inbox_service.c +++ b/src/fw/services/normal/app_inbox_service.c @@ -145,7 +145,7 @@ DEFINE_SYSCALL(bool, sys_app_inbox_service_register, uint8_t *storage, size_t st } DEFINE_SYSCALL(uint32_t, sys_app_inbox_service_unregister, uint8_t *storage) { - // No check is needed on the value of `storage `, we're not going to derefence it. + // No check is needed on the value of `storage `, we're not going to dereference it. return app_inbox_service_unregister_by_storage(storage); }