From 3b92b65db800de527f0a204176f7ea101026adac Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:34:33 -0500 Subject: [PATCH] spelling: referring Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- checkers/MutexChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkers/MutexChecker.cpp b/checkers/MutexChecker.cpp index b7f65d6b..d91f81f2 100644 --- a/checkers/MutexChecker.cpp +++ b/checkers/MutexChecker.cpp @@ -28,7 +28,7 @@ namespace std { } /* This analyzer suffers from the major limitation that most of the mutexes in Pebble are globals, - * so all symbols and MemRegions refering to the mutexes are invalidated every time an unknown + * so all symbols and MemRegions referring to the mutexes are invalidated every time an unknown * function is called. This analyzer instead associates mutexes with the declaration of their * variables, which has the obvious limitation of not catching when mutexes are passed as * arguments (which fortunately never? happens in pebble).