summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Dahl <ada@thorsis.com>2022-02-08 14:07:29 +0100
committerAndreas Schneider <asn@cryptomilk.org>2023-02-16 15:29:38 +0100
commit61b1fb97fb9de87609102bcdafcc0018972199fe (patch)
treee886f25a5d56240d8839774021136deabbfe3f6f
parent2cc8cba6abb3c0ec7e30486accc624a3398cd7cf (diff)
downloadcmocka-61b1fb97fb9de87609102bcdafcc0018972199fe.zip
cmocka-61b1fb97fb9de87609102bcdafcc0018972199fe.tar.gz
cmocka-61b1fb97fb9de87609102bcdafcc0018972199fe.tar.bz2
doc: Remove redundant words
Fixes: 400038f6cac9 ("include: Add a group for mock objects.") Signed-off-by: Alexander Dahl <ada@thorsis.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--include/cmocka.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cmocka.h b/include/cmocka.h
index 60ec46f..8dfad97 100644
--- a/include/cmocka.h
+++ b/include/cmocka.h
@@ -188,7 +188,7 @@ cast_to_largest_integral_type(cast_to_pointer_integral_type(value))
* @defgroup cmocka_mock Mock Objects
* @ingroup cmocka
*
- * Mock objects mock objects are simulated objects that mimic the behavior of
+ * Mock objects are simulated objects that mimic the behavior of
* real objects. Instead of calling the real objects, the tested object calls a
* mock object that merely asserts that the correct methods were called, with
* the expected parameters, in the correct order.