summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2022-08-08 16:51:30 -0500
committerJoel Sherrill <joel@rtems.org>2022-08-10 14:15:47 -0500
commit36895bd2c575103701b52ab3b9a4a1fc8170fe1f (patch)
tree3379ec639cb55bb2b05e67ba1d74fe8aad856eb9 /cpukit
parentpsxtimer0[12]/psxtimer.c: Reformat file header. (diff)
downloadrtems-36895bd2c575103701b52ab3b9a4a1fc8170fe1f.tar.bz2
cpukit/include/rtems/test-info.h: Change @returns to @return
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/include/rtems/test-info.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/include/rtems/test-info.h b/cpukit/include/rtems/test-info.h
index ca96241e2e..3b839533c2 100644
--- a/cpukit/include/rtems/test-info.h
+++ b/cpukit/include/rtems/test-info.h
@@ -108,14 +108,14 @@ typedef enum
/**
* @brief Prints a begin of test message using printf().
*
- * @returns As specified by printf().
+ * @return As specified by printf().
*/
int rtems_test_begin(const char* name, const RTEMS_TEST_STATE state);
/**
* @brief Prints an end of test message using printf().
*
- * @returns As specified by printf().
+ * @return As specified by printf().
*/
int rtems_test_end(const char* name);
@@ -128,7 +128,7 @@ RTEMS_NO_RETURN void rtems_test_exit(int status);
/**
* @brief Prints via the RTEMS printer.
*
- * @returns As specified by printf().
+ * @return As specified by printf().
*/
int rtems_test_printf(const char* format, ...) RTEMS_PRINTFLIKE(1, 2);