aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/magi/response.h4
-rw-r--r--include/magi/urlenc.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/include/magi/response.h b/include/magi/response.h
index 9364fd4..4867c2f 100644
--- a/include/magi/response.h
+++ b/include/magi/response.h
@@ -23,7 +23,9 @@ typedef struct magi_response {
/* Response initialiser, setup defaults. */
void magi_response_init(magi_response *r);
-/* Send response headers and free memory used by it. */
+/* Send response headers. */
+void magi_response_send(magi_response *r);
+/* Free memory used by response headers. */
void magi_response_free(magi_response *r);
/* Just response defaults. (text/html, 200 Ok) */
diff --git a/include/magi/urlenc.h b/include/magi/urlenc.h
index 1b629f9..16310f2 100644
--- a/include/magi/urlenc.h
+++ b/include/magi/urlenc.h
@@ -7,7 +7,7 @@
* will be.
*
* RFC 3986 describes URL-encoding. Briefly it is changing every space into
- * plus sign and every not alpha-numerical and not @c "~-._" character into
+ * plus sign and every not alpha-numerical and not "~-._" character into
* percent sign followed by hexadecimal representation of given character.
*/