rev 551 - trunk/docs/tutorial

SVN User <[email protected]> Tue, 25 May 2004 15:15:28 -0400
Newsgroups gmane.comp.lang.prothon.cvs
Message-ID <[email protected]>
Author: mark
Date: 2004-05-25 15:15:25 -0400 (Tue, 25 May 2004)
New Revision: 551

Modified:
   trunk/docs/tutorial/tutorial3.htm
Log:
fixed some typos in tutorial

Modified: trunk/docs/tutorial/tutorial3.htm
===================================================================
--- trunk/docs/tutorial/tutorial3.htm	2004-05-25 18:18:57 UTC (rev 550)
+++ trunk/docs/tutorial/tutorial3.htm	2004-05-25 19:15:25 UTC (rev 551)
@@ -44,10 +44,10 @@
           an object can hold data. Ordinary binary computer data of ones, zeros, 
           bytes, characters, etc. </p>
         <p><font face="Verdana, Arial, Helvetica, sans-serif" size="+2"><a name="datatypes"></a></font>Prothon 
-          makes it wasy for you to use an object with simple data types like integers 
+          makes it easy for you to use an object with simple data types like integers 
           and strings. Unlike some languages these types are not special. You 
           can create your own types like these. For now we will just use them 
-          and now worry about where they come from. Some of the most basic types 
+          and not worry about where they come from. Some of the most basic types 
           to use are the Integer, Float, and String objects:</p>
         <pre>
 >>> 5 + 4                # integer addition