summaryrefslogtreecommitdiff
path: root/lib/igt_core.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2015-10-02 12:56:16 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-10-07 18:24:54 +0200
commitc9112dca9e82288b887e248a5982df94c8ec1c04 (patch)
treeb64188edcf2bceab471c463d3257a52a56921e93 /lib/igt_core.h
parentd878e18dfd37eb6dd3517d601f4e779349e25ebc (diff)
lib/core: Fix docs for igt_assert_lt(e)
Logical negation is hard. v2: The second integer isn't plural (Daniel). Cc: "Morton, Derek J" <derek.j.morton@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Reviewed-by: Daniel Stone <daniels@collabora.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'lib/igt_core.h')
-rw-r--r--lib/igt_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/igt_core.h b/lib/igt_core.h
index f8bfbf01..6259321b 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -458,7 +458,7 @@ void igt_exit(void) __attribute__((noreturn));
* @n1: first integer
* @n2: second integer
*
- * Fails (sub-)test if the second integers is greater than the first.
+ * Fails (sub-)test if the second integer is strictly smaller than the first.
* Beware that for now this only works on integers.
*
* Like igt_assert(), but displays the values being compared on failure instead
@@ -471,7 +471,7 @@ void igt_exit(void) __attribute__((noreturn));
* @n1: first integer
* @n2: second integer
*
- * Fails (sub-)test if the second integers is strictly smaller than the first.
+ * Fails (sub-)test if the second integer is smaller than or equal to the first.
* Beware that for now this only works on integers.
*
* Like igt_assert(), but displays the values being compared on failure instead