summaryrefslogtreecommitdiff
path: root/src/libical/icalmemory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libical/icalmemory.h')
-rw-r--r--src/libical/icalmemory.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libical/icalmemory.h b/src/libical/icalmemory.h
index 3af7e38d..7eb7e010 100644
--- a/src/libical/icalmemory.h
+++ b/src/libical/icalmemory.h
@@ -97,7 +97,7 @@ LIBICAL_ICAL_EXPORT void *icalmemory_tmp_buffer(size_t size);
LIBICAL_ICAL_EXPORT char *icalmemory_tmp_copy(const char *str);
/**
- * @brief Add an externally allocated buffer to the ring.
+ * @brief Adds an externally allocated buffer to the ring.
* @param buf The externally allocated buffer to add to the ring
*
* Adds an externally allocated buffer to the ring. This ensures that libical
@@ -123,7 +123,7 @@ LIBICAL_ICAL_EXPORT char *icalmemory_tmp_copy(const char *str);
LIBICAL_ICAL_EXPORT void icalmemory_add_tmp_buffer(void *buf);
/**
- * @brief Free all memory used in the ring
+ * @brief Frees all memory used in the ring
*
* Frees all memory used in the ring. Depending on if ::HAVE_PTHREAD is set or
* not, the ring buffer is allocated on a per-thread basis, meaning that if all
@@ -231,7 +231,7 @@ LIBICAL_ICAL_EXPORT void icalmemory_free_buffer(void *buf);
have memory problems. */
/**
- * @brief Append a string to a buffer.
+ * @brief Appends a string to a buffer.
* @param buf The buffer to append the string to.
* @param pos The position to append the string at.
* @param buf_size The size of the buffer (will be changed if buffer is
@@ -272,7 +272,7 @@ LIBICAL_ICAL_EXPORT void icalmemory_append_string(char **buf, char **pos, size_t
const char *string);
/**
- * @brief Append a character to a buffer.
+ * @brief Appends a character to a buffer.
* @param buf The buffer to append the character to.
* @param pos The position to append the character at.
* @param buf_size The size of the buffer (will be changed if buffer is
@@ -313,7 +313,7 @@ LIBICAL_ICAL_EXPORT void icalmemory_append_string(char **buf, char **pos, size_t
LIBICAL_ICAL_EXPORT void icalmemory_append_char(char **buf, char **pos, size_t *buf_size, char ch);
/**
- * @brief Create a duplicate of a string.
+ * @brief Creates a duplicate of a string.
* @param s The string to duplicate.
* @return A pointer to a string containing the same data as @a s
*