[gxml] Removing HtmlDocument documentation warnings
- From: Daniel Espinosa Ortiz <despinosa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gxml] Removing HtmlDocument documentation warnings
- Date: Mon, 4 Sep 2017 14:18:00 +0000 (UTC)
commit 0a80532c3952ac54ac48b1d8152f03576653dcd4
Author: Daniel Espinosa <esodan gmail com>
Date: Mon Sep 4 09:16:55 2017 -0500
Removing HtmlDocument documentation warnings
gxml/GHtml.vala | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/gxml/GHtml.vala b/gxml/GHtml.vala
index 810c3c1..f41fc24 100644
--- a/gxml/GHtml.vala
+++ b/gxml/GHtml.vala
@@ -45,7 +45,7 @@ namespace GXml {
}
/**
- * This method parse strings in a {@link GLib.File} using {@link Xml.Html.Doc.read_memory}
method.
+ * This method parse strings in a {@link GLib.File} using {@link Html.Doc.read_memory} method.
* Refer to libxml2 documentation about limitations on parsing.
*
* In order to use a different parser, may you want to load in memory your file,
@@ -58,14 +58,14 @@ namespace GXml {
this.from_string ((string) ostream.data, options);
}
/**
- * This method parse strings using {@link Xml.Html.Doc.read_memory} method.
+ * This method parse strings using {@link Html.Doc.read_memory} method.
* Refer to libxml2 documentation about limitations on parsing.
*/
public HtmlDocument.from_string (string html, int options = 0) {
base.from_doc (Html.Doc.read_memory ((char[]) html, html.length, "", null, options));
}
/**
- * This method parse strings using {@link Xml.Html.ParserCtxt} class.
+ * This method parse strings using {@link Html.ParserCtxt} class.
* Refer to libxml2 documentation about limitations on parsing.
*/
public HtmlDocument.from_string_context (string html, int options = 0) {
@@ -74,14 +74,14 @@ namespace GXml {
base.from_doc (doc);
}
/**
- * This method parse strings using {@link Xml.Html.read_doc} method.
+ * This method parse strings using {@link Html.Doc.read_doc} method.
* Refer to libxml2 documentation about limitations on parsing.
*/
public HtmlDocument.from_string_doc (string html, int options = 0) {
base.from_doc (Html.Doc.read_doc (html, "", null, options));
}
/**
- * This method dump to HTML string using {@link Xml.Html.dump_memory} method.
+ * This method dump to HTML string using {@link Html.Doc.dump_memory} method.
* Refer to libxml2 documentation about output.
*/
public new string to_html () {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]