[Pkg-libvirt-commits] [libguestfs] 170/266: v2v: Add comments to DOM module.
Hilko Bengen
bengen at moszumanska.debian.org
Fri Oct 3 14:41:57 UTC 2014
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to annotated tag debian/1%1.27.35-1
in repository libguestfs.
commit 4c492e21ac61769c28cfd6ceb0b869cfcedd59a6
Author: Richard W.M. Jones <rjones at redhat.com>
Date: Mon Aug 25 20:15:53 2014 +0100
v2v: Add comments to DOM module.
---
v2v/DOM.mli | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/v2v/DOM.mli b/v2v/DOM.mli
index b594b49..6a1f3bc 100644
--- a/v2v/DOM.mli
+++ b/v2v/DOM.mli
@@ -19,9 +19,9 @@
(** Poor man's XML DOM, mutable for easy of modification. *)
type node =
- | PCData of string
- | Comment of string
- | Element of element
+ | PCData of string (** Text. *)
+ | Comment of string (** <!-- comment --> *)
+ | Element of element (** <element/> with attrs and children *)
and element = {
e_name : string; (** Name of element. *)
mutable e_attrs : attr list; (** Attributes. *)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libguestfs.git
More information about the Pkg-libvirt-commits
mailing list