Fix a few comments

This commit is contained in:
rl1987
2014-04-26 16:53:28 +03:00
committed by Nick Mathewson
parent 0cca8dc35a
commit a56511e594
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -2061,8 +2061,8 @@ get_environment(void)
#endif
}
/** Set *addr to the IP address (in dotted-quad notation) stored in c.
* Return 1 on success, 0 if c is badly formatted. (Like inet_aton(c,addr),
/** Set *addr to the IP address (in dotted-quad notation) stored in *str.
* Return 1 on success, 0 if *str is badly formatted. (Like inet_aton(str,addr),
* but works on Windows and Solaris.)
*/
int
+2 -2
View File
@@ -20,8 +20,8 @@
*
* and implement it as:
*
* MOCK_IMPL(void
* writebuf,(size_t n, char *buf)
* MOCK_IMPL(void,
* writebuf,(size_t n, char *buf))
* {
* ...
* }