aboutsummaryrefslogtreecommitdiff
path: root/include/magi
diff options
context:
space:
mode:
Diffstat (limited to 'include/magi')
-rw-r--r--include/magi/response.h2
-rw-r--r--include/magi/urlenc.h4
2 files changed, 2 insertions, 4 deletions
diff --git a/include/magi/response.h b/include/magi/response.h
index 4867c2f..c38e3f9 100644
--- a/include/magi/response.h
+++ b/include/magi/response.h
@@ -9,8 +9,6 @@
*/
#include "cookie.h"
#include "param.h"
-#include <stdio.h>
-#include <stdarg.h>
/* Response headers as three sequential groups. */
diff --git a/include/magi/urlenc.h b/include/magi/urlenc.h
index 16310f2..d3f2ae6 100644
--- a/include/magi/urlenc.h
+++ b/include/magi/urlenc.h
@@ -6,8 +6,8 @@
* encoding itself and magi_urlenc_size to find what the size of code
* will be.
*
- * RFC 3986 describes URL-encoding. Briefly it is changing every space into
- * plus sign and every not alpha-numerical and not "~-._" character into
+ * RFC 3986 describes URL-encoding. Briefly it is replacement of every space
+ * into plus sign and every not alpha-numerical and not "~-._" character into
* percent sign followed by hexadecimal representation of given character.
*/