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