Fix @return Doxygen commands to be singular instead of plural.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12094 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
darylm503
2011-08-05 23:57:34 +00:00
parent 59d13433e7
commit 7dc1329100
24 changed files with 5092 additions and 5092 deletions

View File

@@ -651,7 +651,7 @@ open(
@param [in] timeout Length of time in milliseconds to wait for the event
@returns The number of file descriptors with detected events. Zero
@return The number of file descriptors with detected events. Zero
indicates that the call timed out and -1 indicates an error.
**/
@@ -1100,12 +1100,12 @@ write (int fd, const void *buf, size_t nbyte)
/** Gets the current working directory.
The getcwd() function shall place an absolute pathname of the current
working directory in the array pointed to by buf, and return buf. The
pathname copied to the array shall contain no components that are
symbolic links. The size argument is the size in bytes of the character
array pointed to by the buf argument.
The getcwd() function shall place an absolute pathname of the current
working directory in the array pointed to by buf, and return buf. The
pathname copied to the array shall contain no components that are
symbolic links. The size argument is the size in bytes of the character
array pointed to by the buf argument.
@param[in,out] buf The buffer to fill.
@param[in] size The number of bytes in buffer.
@@ -1114,8 +1114,8 @@ write (int fd, const void *buf, size_t nbyte)
@retval NULL Size was 0.
@return buf The function completed successfully. See errno for info.
**/
char
*getcwd (char *buf, size_t size)
char
*getcwd (char *buf, size_t size)
{
CONST CHAR16 *Cwd;
@@ -1133,7 +1133,7 @@ char
errno = ERANGE;
return (NULL);
}
return (UnicodeStrToAsciiStr(Cwd, buf));
}