Fix two documentation bugs reported by Ларионов Даниил.
diff --git a/man/zip_file_add.mdoc b/man/zip_file_add.mdoc
index 746f5ad..06ef9f7 100644
--- a/man/zip_file_add.mdoc
+++ b/man/zip_file_add.mdoc
@@ -112,7 +112,7 @@
 .Sh EXAMPLES
 .Bd -literal -offset indent
 zip_source_t *s;
-const char *buf="teststring";
+const char buf[]="teststring";
 
 if ((s=zip_source_buffer(archive, buf, sizeof(buf), 0)) == NULL ||
     zip_file_add(archive, name, s, ZIP_FL_ENC_UTF_8) < 0) {
diff --git a/man/zip_source_close.mdoc b/man/zip_source_close.mdoc
index 4220861..e0501d1 100644
--- a/man/zip_source_close.mdoc
+++ b/man/zip_source_close.mdoc
@@ -34,7 +34,7 @@
 .Os
 .Sh NAME
 .Nm zip_source_close
-.Nd open zip_source (which was open for reading)
+.Nd close zip_source (which was open for reading)
 .Sh LIBRARY
 libzip (-lzip)
 .Sh SYNOPSIS