cvs: smarty /docs/en/designers/language-basic-syntax language-syntax-comments.xml

[email protected] ("Peter 'Mash' Morgan") Tue, 07 Mar 2006 18:36:04 -0000
Newsgroups php.smarty.cvs
Message-ID <cvspete_morgan1141756564@cvsserver>
pete_morgan		Tue Mar  7 18:36:04 2006 UTC

  Modified files:              
    /smarty/docs/en/designers/language-basic-syntax	
                                                   	language-syntax-comments.xml 
  Log:
  fix descriptions ( thanks Ginger, a Smarty newbie )
  
http://cvs.php.net/viewcvs.cgi/smarty/docs/en/designers/language-basic-syntax/language-syntax-comments.xml?r1=1.6&r2=1.7&diff_format=u
Index: smarty/docs/en/designers/language-basic-syntax/language-syntax-comments.xml
diff -u smarty/docs/en/designers/language-basic-syntax/language-syntax-comments.xml:1.6 smarty/docs/en/designers/language-basic-syntax/language-syntax-comments.xml:1.7
--- smarty/docs/en/designers/language-basic-syntax/language-syntax-comments.xml:1.6	Tue Mar  7 02:00:17 2006
+++ smarty/docs/en/designers/language-basic-syntax/language-syntax-comments.xml	Tue Mar  7 18:36:04 2006
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
 <sect1 id="language.syntax.comments">
  <title>Comments</title>
  <para>
@@ -16,22 +16,22 @@
   <programlisting>
 <![CDATA[
 <body>
-{* I am a smarty comment ... I dont exist in your html output ;-) *}
+{* I am a smarty comment, I dont exist in the compiled output  *}
 
-{* another single smarty line comment, me not even in the compiled template  *}
-<!-- Yep me the another html comment and me sent to le browser -->
+{* another single smarty line comment  *}
+<!-- A html comment that is sent to the browser -->
 
 {* this multiline smarty 
-    comment is
+   comment is
    not sent to browser
 *}
 
-{* include the header file here which is not *}
+{* include the header file  *}
 {include file='header.tpl'}
 
 
 {* Dev note:  $includeFile is assigned in foo.php script  *}
-<!-- this html comment is sent to browser -->
+<!-- Displays main content block -->
 {include file=$includeFile}
 
 {* this <select> block is redundant *}