Skip to content

Commit 00defdd

Browse files
Fix typo
1 parent dae8162 commit 00defdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

c/misra/src/rules/RULE-22-18/NonRecursiveMutexRecursivelyLockedAudit.ql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* @id c/misra/non-recursive-mutex-recursively-locked-audit
33
* @name RULE-22-18: (Audit) Non-recursive mutexes shall not be recursively locked
4-
* @description Mutex that may be initialized without mtx_recursive shall not be locked by a thread
5-
* that may have previously locked it.
4+
* @description Mutexes that may be initialized without mtx_recursive shall not be locked by a
5+
* thread that may have previously locked it.
66
* @kind problem
77
* @precision high
88
* @problem.severity error

rule_packages/c/Concurrency9.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
]
8383
},
8484
{
85-
"description": "Mutex that may be initialized without mtx_recursive shall not be locked by a thread that may have previously locked it.",
85+
"description": "Mutexes that may be initialized without mtx_recursive shall not be locked by a thread that may have previously locked it.",
8686
"kind": "problem",
8787
"name": "(Audit) Non-recursive mutexes shall not be recursively locked",
8888
"precision": "high",

0 commit comments

Comments
 (0)