diff --git a/pdf2htmlEX.1.in b/pdf2htmlEX.1.in
index 9a5ffcb..0f49153 100644
--- a/pdf2htmlEX.1.in
+++ b/pdf2htmlEX.1.in
@@ -287,7 +287,7 @@ By default, pdf2htmlEX will use the manifest in the default data-dir (run `pdf2h
You can modify the default one, or you can create a new one and specify the correct data-dir in the command line.
-When single-html is 1, all files referred by the manifest must be located in the data-dir.
+All files referred by the manifest must be located in the data-dir.
.SH EXAMPLE
.TP
@@ -297,7 +297,7 @@ Convert file.pdf into file.html
.B pdf2htmlEX --clean-tmp 0 --debug 1 /path/to/file.pdf
Convert file.pdf and leave all intermediate files.
.TP
-.B pdf2htmlEX --dest-dir out --single-html 0 /path/to/file.pdf
+.B pdf2htmlEX --dest-dir out --embed fi /path/to/file.pdf
Convert file.pdf into out/file.html and leave font/image files separated.
.SH COPYRIGHT
diff --git a/src/HTMLRenderer/HTMLRenderer.h b/src/HTMLRenderer/HTMLRenderer.h
index a3fe23e..7d67f70 100644
--- a/src/HTMLRenderer/HTMLRenderer.h
+++ b/src/HTMLRenderer/HTMLRenderer.h
@@ -176,7 +176,7 @@ protected:
void export_remote_default_font(long long fn_id);
void export_local_font(const FontInfo & info, GfxFont * font, const std::string & original_font_name, const std::string & cssfont);
- // depending on single-html, to embed the content or add a link to it
+ // depending on --embed***, to embed the content or add a link to it
// "type": specify the file type, usually it's the suffix, in which case this parameter could be ""
// "copy": indicates whether to copy the file into dest_dir, if not embedded
void embed_file(std::ostream & out, const std::string & path, const std::string & type, bool copy);