diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-09-01 22:07:43 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-09-01 22:07:43 +0200 |
commit | 9614a75063f45cb2ceac5219cb745dec0ebdeb10 (patch) | |
tree | 5622ebd5494ac4755e2912cb54696225cdd3a3fb | |
parent | mds-kbdc: minor optimisation (diff) | |
download | mds-9614a75063f45cb2ceac5219cb745dec0ebdeb10.tar.gz mds-9614a75063f45cb2ceac5219cb745dec0ebdeb10.tar.bz2 mds-9614a75063f45cb2ceac5219cb745dec0ebdeb10.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/libmdsclient/comm.h | 2 | ||||
-rw-r--r-- | src/libmdsclient/proto-util.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/libmdsclient/comm.h b/src/libmdsclient/comm.h index d26a2e2..c74ba90 100644 --- a/src/libmdsclient/comm.h +++ b/src/libmdsclient/comm.h @@ -89,7 +89,7 @@ int libmds_connection_initialise(libmds_connection_t* restrict this); * @return The connection descriptor, `NULL` on error, * `errno` will have been set accordingly on error * - * @throws ENOMEM Out of memory, Possibly, the process hit the RLIMIT_AS or + * @throws ENOMEM Out of memory. Possibly, the process hit the RLIMIT_AS or * RLIMIT_DATA limit described in getrlimit(2). * @throws EAGAIN See pthread_mutex_init(3) * @throws EPERM See pthread_mutex_init(3) diff --git a/src/libmdsclient/proto-util.h b/src/libmdsclient/proto-util.h index 200e0db..fbfc394 100644 --- a/src/libmdsclient/proto-util.h +++ b/src/libmdsclient/proto-util.h @@ -107,7 +107,7 @@ typedef enum libmds_cherrypick_optimisation * @return Zero on success, -1 on error, `errno` will have been set * accordingly on error. * - * @throws ENOMEM Out of memory, Possibly, the process hit the RLIMIT_AS or + * @throws ENOMEM Out of memory. Possibly, the process hit the RLIMIT_AS or * RLIMIT_DATA limit described in getrlimit(2). */ __attribute__((sentinel)) @@ -226,7 +226,7 @@ size_t libmds_headers_cherrypick_binary_sorted(char** restrict headers, size_t h * @return Zero on success, -1 on error, `errno` will have been set * accordingly on error. * - * @throws ENOMEM Out of memory, Possibly, the process hit the RLIMIT_AS or + * @throws ENOMEM Out of memory. Possibly, the process hit the RLIMIT_AS or * RLIMIT_DATA limit described in getrlimit(2). */ int libmds_headers_cherrypick_v(char** restrict headers, size_t header_count, size_t* restrict found, @@ -367,7 +367,7 @@ void libmds_headers_sort(char** restrict headers, size_t header_count); * @return Zero on success, -1 on error, `errno` will have been set * accordingly on error. * - * @throws ENOMEM Out of memory, Possibly, the process hit the RLIMIT_AS or + * @throws ENOMEM Out of memory. Possibly, the process hit the RLIMIT_AS or * RLIMIT_DATA limit described in getrlimit(2). */ __attribute__((nonnull(1, 2, 3), sentinel)) @@ -413,7 +413,7 @@ int libmds_compose(char** restrict buffer, size_t* restrict buffer_size, size_t* * @return Zero on success, -1 on error, `errno` will have been set * accordingly on error. * - * @throws ENOMEM Out of memory, Possibly, the process hit the RLIMIT_AS or + * @throws ENOMEM Out of memory. Possibly, the process hit the RLIMIT_AS or * RLIMIT_DATA limit described in getrlimit(2). */ __attribute__((nonnull(1, 2, 3))) |