diff options
author | Brian Paul <[email protected]> | 2011-10-25 08:45:37 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-25 08:45:58 -0600 |
commit | 05720e14ba1072c547fc2388738ed4f70a6630b6 (patch) | |
tree | 7cc86dd6e050ac4aef13c3d9d4b39576bc390667 | |
parent | ca1b60057aaf7f10f9cdbdbcd75cf3f53c751d64 (diff) |
mesa: fix comment language
-rw-r--r-- | src/mesa/main/context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index a4c7ba2c54d..a9df0a866a7 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -233,7 +233,7 @@ do { \ * glBegin()/glEnd() pair, with return value. * * \param ctx GL context. - * \param retval value to return value in case the assertion fails. + * \param retval value to return in case the assertion fails. */ #define ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, retval) \ do { \ @@ -274,7 +274,7 @@ do { \ * glBegin()/glEnd() pair and flush the vertices, with return value. * * \param ctx GL context. - * \param retval value to return value in case the assertion fails. + * \param retval value to return in case the assertion fails. */ #define ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH_WITH_RETVAL(ctx, retval) \ do { \ |