summaryrefslogtreecommitdiffhomepage
path: root/xml.html.markdown
diff options
context:
space:
mode:
authorevuez <helloevuez@gmail.com>2015-10-16 10:42:41 +0200
committerevuez <helloevuez@gmail.com>2015-10-16 10:42:41 +0200
commit85adff2c39e6eae77a915638961f2144ef18b5c9 (patch)
treead87847bd5cca361b2e4582a361c4d4d70948aec /xml.html.markdown
parent375f0c18ae9b8d8732c480d0647becf1e82adf3e (diff)
parent25e49b8cf10d3879431eae6ffe8a8e5f88843b8d (diff)
Merge 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'xml.html.markdown')
-rw-r--r--xml.html.markdown6
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>