소스 검색

Update Xml.hx

Mark Knol 10 년 전
부모
커밋
462130a325
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      std/Xml.hx

+ 6 - 6
std/Xml.hx

@@ -25,7 +25,7 @@
 **/
 **/
 @:enum abstract XmlType(Int) {
 @:enum abstract XmlType(Int) {
 	/**
 	/**
-		Represents a XML element type.
+		Represents an XML element type.
 	**/
 	**/
 	var Element = 0;
 	var Element = 0;
 	/**
 	/**
@@ -37,19 +37,19 @@
 	**/
 	**/
 	var CData = 2;
 	var CData = 2;
 	/**
 	/**
-		Represents a XML comment type.
+		Represents an XML comment type.
 	**/
 	**/
 	var Comment = 3;
 	var Comment = 3;
 	/**
 	/**
-		Represents a XML doctype element type.
+		Represents an XML doctype element type.
 	**/
 	**/
 	var DocType = 4;
 	var DocType = 4;
 	/**
 	/**
-	 	Represents a XML processing instruction type.
+	 	Represents an XML processing instruction type.
 	**/
 	**/
 	var ProcessingInstruction = 5;
 	var ProcessingInstruction = 5;
 	/**
 	/**
-		Represents a XML document type.
+		Represents an XML document type.
 	**/
 	**/
 	var Document = 6;
 	var Document = 6;
 }
 }
@@ -90,7 +90,7 @@ class Xml {
 	static public var Document(default,null) = XmlType.Document;
 	static public var Document(default,null) = XmlType.Document;
 
 
 	/**
 	/**
-		Parses the String into an XML Document. 
+		Parses the String into an Xml document. 
 	**/
 	**/
 	static public function parse( str : String ) : Xml {
 	static public function parse( str : String ) : Xml {
 		return haxe.xml.Parser.parse(str);
 		return haxe.xml.Parser.parse(str);