Author: as
Date: Thu Oct  4 13:32:53 2007
New Revision: 6357

Log:
- Fixed some warnings with rst2html in the tutorial.

Modified:
    trunk/Mail/docs/tutorial.txt

Modified: trunk/Mail/docs/tutorial.txt
==============================================================================
--- trunk/Mail/docs/tutorial.txt [iso-8859-1] (original)
+++ trunk/Mail/docs/tutorial.txt [iso-8859-1] Thu Oct  4 13:32:53 2007
@@ -431,7 +431,7 @@
 Parsing: iconv() notices
 ------------------------
 
-If the mail that you try to parse is not encoded properly, the `iconv`_()
+If the mail that you try to parse is not encoded properly, the `iconv`_ ()
 function will throw notices (from the function convertToUTF8Iconv() in
 ezcMailCharsetConverter).
 
@@ -439,7 +439,7 @@
 
 1. Create a new function which is similar to convertToUTF8Iconv() from 
 ezcMailCharsetConverter, but which supresses notices and errors (with @ in
-front of `iconv`_()): ::
+front of `iconv`_ ()): ::
 
   class myConverter
   {
@@ -461,7 +461,7 @@
 Parsing: missing characters
 ---------------------------
 
-If the mail that you try to parse is not encoded properly, the `iconv`_()
+If the mail that you try to parse is not encoded properly, the `iconv`_ ()
 function will throw notices (from the function convertToUTF8Iconv() in
 ezcMailCharsetConverter).
 
@@ -469,7 +469,7 @@
 
 1. Create a new function which is similar to convertToUTF8Iconv() from 
 ezcMailCharsetConverter, but which uses one of the options //IGNORE or
-//TRANSLIT for `iconv`_(): ::
+//TRANSLIT for `iconv`_ (): ::
 
   class myConverter
   {
@@ -489,7 +489,7 @@
   ezcMailCharsetConverter::setConvertMethod( array( 'myConverter', 
'convertToUTF8IconvIgnore' ) );
 
 See the other examples in ezcMailCharsetConverter, and see also the
-documentation for the `iconv`_() function to find out how //IGNORE and
+documentation for the `iconv`_ () function to find out how //IGNORE and
 //TRANSLIT work.
 
 .. _iconv: http://php.net/manual/en/function.iconv.php


-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to