diff options
| author | evuez <helloevuez@gmail.com> | 2015-10-16 10:42:41 +0200 | 
|---|---|---|
| committer | evuez <helloevuez@gmail.com> | 2015-10-16 10:42:41 +0200 | 
| commit | 85adff2c39e6eae77a915638961f2144ef18b5c9 (patch) | |
| tree | ad87847bd5cca361b2e4582a361c4d4d70948aec /xml.html.markdown | |
| parent | 375f0c18ae9b8d8732c480d0647becf1e82adf3e (diff) | |
| parent | 25e49b8cf10d3879431eae6ffe8a8e5f88843b8d (diff) | |
Merge 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'xml.html.markdown')
| -rw-r--r-- | xml.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/xml.html.markdown b/xml.html.markdown index 4d33e614..efc2340f 100644 --- a/xml.html.markdown +++ b/xml.html.markdown @@ -7,7 +7,7 @@ contributors:  XML is a markup language designed to store and transport data. -Unlike HTML, XML does not specify how to display or to format data, just carry it. +Unlike HTML, XML does not specify how to display or to format data, it just carries it.  * XML Syntax @@ -83,7 +83,7 @@ With this tool, you can check the XML data outside the application logic.  <!DOCTYPE note SYSTEM "Bookstore.dtd">  <bookstore>    <book category="COOKING"> -    <title >Everyday Italian</title> +    <title>Everyday Italian</title>      <price>30.00</price>    </book>  </bookstore> @@ -121,7 +121,7 @@ With this tool, you can check the XML data outside the application logic.  <bookstore>    <book category="COOKING"> -    <title >Everyday Italian</title> +    <title>Everyday Italian</title>      <price>30.00</price>    </book>  </bookstore> | 
