Improve documentation of g_assert_error()

This macro is intended for use in tests, but recommends as an
alternative to use a macro that is not intended for use in tests.
Fix it.
This commit is contained in:
Michael Catanzaro 2018-12-19 02:29:14 +00:00
parent 26f783576d
commit 0618d67411

View File

@ -751,7 +751,7 @@
*
* This can only be used to test for a specific error. If you want to
* test that @err is set, but don't care what it's set to, just use
* `g_assert (err != NULL)`
* `g_assert_nonnull (err)`.
*
* Since: 2.20
*/