From 871aaa768d0a6357e044d113a46eaf3f0abbd86a Mon Sep 17 00:00:00 2001 From: Darren Rambaud Date: Wed, 29 Dec 2021 21:27:56 -0600 Subject: [PATCH] tools/checklocks: fix typo in readme --- tools/checklocks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/checklocks/README.md b/tools/checklocks/README.md index 7444acfa0..c6d2356ba 100644 --- a/tools/checklocks/README.md +++ b/tools/checklocks/README.md @@ -88,7 +88,7 @@ greater than 100%, if the lock is held multiple times. For example: func foo(ts1 *testStruct, ts2 *testStruct) { ts1.Lock() ts2.Lock() - ts1.gaurdedField = 1 // 200% locks held. + ts1.guardedField = 1 // 200% locks held. ts1.Unlock() ts2.Unlock() }