summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-05-29 15:57:37 +0200
committerMichael Adam <obnox@samba.org>2014-05-29 16:14:35 +0200
commit27f19ebaff0cda7559a9ced608bd94dc9cc7241d (patch)
tree58492cd4498a9672c502ff62aeee230fd6dc44d2
parentc3ee48dea76f0dab06e2b3d60cacfe0165b6e8e9 (diff)
downloadcmocka-27f19ebaff0cda7559a9ced608bd94dc9cc7241d.tar.gz
cmocka-27f19ebaff0cda7559a9ced608bd94dc9cc7241d.tar.bz2
cmocka-27f19ebaff0cda7559a9ced608bd94dc9cc7241d.zip
cmocka: fix doxygen comment for assert_in_range()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--include/cmocka.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cmocka.h b/include/cmocka.h
index 73ec304..70c4577 100644
--- a/include/cmocka.h
+++ b/include/cmocka.h
@@ -1172,8 +1172,8 @@ void assert_memory_not_equal(const void *a, const void *b, size_t size);
#ifdef DOXYGEN
/**
- * @brief Assert that the specified value is bigger than the minimum and
- * smaller than the maximum.
+ * @brief Assert that the specified value is not smaller than the minimum
+ * and and not greater than the maximum.
*
* The function prints an error message to standard error and terminates the
* test by calling fail() if value is not in range.