mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 17:36:11 +00:00
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>
This commit is contained in:
parent
d878e18dfd
commit
c9112dca9e
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user