From: Antonio Ospite <ospite@studenti.unina.it>
Date: Fri, 13 Nov 2009 12:47:36 +0000 (+0100)
Subject: Fix example for the 'var' element.
X-Git-Url: https://git.ao2.it/xhtml11_quickref.git/commitdiff_plain/19445a31cad19b0e074f9211a5f24c17881aa3f1

Fix example for the 'var' element.

From http://reference.sitepoint.com/html/var:
  The var element is used to indicate that the text is a variable and
  shouldn’t be taken literally. Instead, it’s an example that should be
  replaced with your own value.

Also in
http://articles.sitepoint.com/article/html-37-steps-perfect-markup/2 at
item 29.:
  A common misconception is that var should be used for marking up
  variables in programming code samples.
---

diff --git a/xhtml11_quick_reference_by_examples.html b/xhtml11_quick_reference_by_examples.html
index 38dd439..557a473 100644
--- a/xhtml11_quick_reference_by_examples.html
+++ b/xhtml11_quick_reference_by_examples.html
@@ -525,8 +525,8 @@ They are all style-able.
 
   <dt>var</dt>
   <dd>
-  This file name is in <var>$THIS_FILE</var>... this is just an example, you
-  know.
+  Save this file to <var>xhtml11_quickref.html</var>... this is just an example value,
+  you can choose the name you like more.
   </dd>
 
 </dl>