From b5ed4255fc388c7ebaa6707079e3258d776e0e30 Mon Sep 17 00:00:00 2001 From: Richard Schwarting Date: Thu, 7 Jul 2011 12:35:01 -0400 Subject: [PATCH] * break comment over more lines --- gxml/ProcessingInstruction.vala | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gxml/ProcessingInstruction.vala b/gxml/ProcessingInstruction.vala index 5166861d..6b5acb84 100644 --- a/gxml/ProcessingInstruction.vala +++ b/gxml/ProcessingInstruction.vala @@ -1,7 +1,10 @@ /* -*- Mode: vala; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ namespace GXml.Dom { - // TODO: libxml2 doesn't seem to have PI objects, but does have a function to call when one is parsed. Let's not worry about supporting this for right now. + // TODO: libxml2 doesn't seem to have PI objects, but does + // have a function to call when one is parsed. Let's not + // worry about supporting this for right now. + public class ProcessingInstruction : XNode { internal ProcessingInstruction (string target, string data, Document doc) { base (NodeType.PROCESSING_INSTRUCTION, doc); // TODO: want to pass a real Xml.Node* ? -- GitLab