Index: Verifier.java =================================================================== RCS file: /home/cvspublic/jdom/src/java/org/jdom/Verifier.java,v retrieving revision 1.24 diff -c -r1.24 Verifier.java *** Verifier.java 2001/12/11 07:32:04 1.24 --- Verifier.java 2001/12/27 02:08:21 *************** *** 325,331 **** // Cannot begin with 'xml' in any case if (target.equalsIgnoreCase("xml")) { return "Processing instructions cannot have a target of " + ! "\"xml\" in any combination of case"; } // If we got here, everything is OK --- 325,334 ---- // Cannot begin with 'xml' in any case if (target.equalsIgnoreCase("xml")) { return "Processing instructions cannot have a target of " + ! "\"xml\" in any combination of case. (Note that the " + ! "\"\" declaration at the beginning of a document " + ! "should not be added as a processing instruction; it is added " + ! "automatically during output, e.g. by XMLOutputter)"; } // If we got here, everything is OK