From 0bf2c5f55c246738d650c080a26cb9c28e9eccf8 Mon Sep 17 00:00:00 2001 From: Sam Grove Date: Thu, 1 Jun 2017 13:09:11 -0500 Subject: [PATCH] Fix doxygen warnings. --- platform/mbed_poll.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/platform/mbed_poll.h b/platform/mbed_poll.h index 6df32529e1..635733bb98 100644 --- a/platform/mbed_poll.h +++ b/platform/mbed_poll.h @@ -39,13 +39,11 @@ struct pollfh { * For every file handle provided, poll() examines it for any events registered for that particular * file handle. * - * @param fhs, an array of PollFh struct carrying a FileHandle and bitmasks of events - * @param nhfs, number of file handles - * @param timeout, timer value to timeout or -1 for loop forever + * @param fhs an array of PollFh struct carrying a FileHandle and bitmasks of events + * @param nfhs number of file handles + * @param timeout timer value to timeout or -1 for loop forever * - * @return number of file handles selected (for which revents is non-zero). - * @return 0 if timed out with nothing selected. - * @return -1 for error. + * @return number of file handles selected (for which revents is non-zero). 0 if timed out with nothing selected. -1 for error. */ int poll(pollfh fhs[], unsigned nfhs, int timeout);