aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/libmdsclient/comm.h2
-rw-r--r--src/libmdsclient/proto-util.h8
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)))