[svn:parrot] r37341 - in trunk/languages: BASIC/compiler/samples forth ook regex/lib/Regex scheme/lib/Scheme urm

Util at svn.parrot.org Util at svn.parrot.org
Thu Mar 12 04:07:34 UTC 2009


Author: Util
Date: Thu Mar 12 04:07:33 2009
New Revision: 37341
URL: https://trac.parrot.org/parrot/changeset/37341

Log:
[languages] Typo corrections

Modified:
   trunk/languages/BASIC/compiler/samples/chess.bas
   trunk/languages/BASIC/compiler/samples/eliza2.bas
   trunk/languages/BASIC/compiler/samples/newtrek.bas
   trunk/languages/forth/test.pir
   trunk/languages/ook/ook.pasm
   trunk/languages/regex/lib/Regex/Grammar.pm
   trunk/languages/scheme/lib/Scheme/Parser.pm
   trunk/languages/urm/urmc

Modified: trunk/languages/BASIC/compiler/samples/chess.bas
==============================================================================
--- trunk/languages/BASIC/compiler/samples/chess.bas	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/BASIC/compiler/samples/chess.bas	Thu Mar 12 04:07:33 2009	(r37341)
@@ -271,7 +271,7 @@
 3230 GOTO 3100
 3300 IF MZ = 1 THEN 2000
 3500 REM: coup de l'ordinateur  ' Computer's move
-3520 GOSUB 8800			' Initilaize the move tree
+3520 GOSUB 8800			' Initialize the move tree
 _STARTASM
  	time $I0
 	et=$I0
@@ -511,7 +511,7 @@
 8580 IF G = 200 THEN 8600
 8590 G = G + 1
 8600 RETURN
-8800 REM: initialisation de l'arbre des coups  (Initilaize the move tree)
+8800 REM: initialisation de l'arbre des coups  (Initialize the move tree)
 8820 IF T = 0 THEN 8880
 8830 FOR I = 0 TO 4
 8840 S(0, I) = S(1, I)

Modified: trunk/languages/BASIC/compiler/samples/eliza2.bas
==============================================================================
--- trunk/languages/BASIC/compiler/samples/eliza2.bas	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/BASIC/compiler/samples/eliza2.bas	Thu Mar 12 04:07:33 2009	(r37341)
@@ -54,7 +54,7 @@
 1410   LET RES$=RES$+" "+K$
 1420   PRINT RES$
 1499 RETURN
-1500 REM Initialzations
+1500 REM Initializations
 1520 REM Read in keywords
 1521   LET REPLIES=1
 1530   READ REP$(REPLIES)

Modified: trunk/languages/BASIC/compiler/samples/newtrek.bas
==============================================================================
--- trunk/languages/BASIC/compiler/samples/newtrek.bas	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/BASIC/compiler/samples/newtrek.bas	Thu Mar 12 04:07:33 2009	(r37341)
@@ -482,7 +482,7 @@
 	end if
 end sub
 sub Menu
-	print "SH  Sheilds     LR Long Range Scan"
+	print "SH  Shields     LR Long Range Scan"
 	print "NA  Navigate    SR Short Range Scan"
 	print "ST  Status      PH Phasers"
 	print "                TO Torpedos"

Modified: trunk/languages/forth/test.pir
==============================================================================
--- trunk/languages/forth/test.pir	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/forth/test.pir	Thu Mar 12 04:07:33 2009	(r37341)
@@ -1,5 +1,5 @@
 
-# this is the test program for the forth implementation targetting parrot.
+# this is the test program for the forth implementation targeting parrot.
 # this script can be passed the names of any number of test files. each test is
 # a series of input/output pairs, with optional comments that start with #s.
 #

Modified: trunk/languages/ook/ook.pasm
==============================================================================
--- trunk/languages/ook/ook.pasm	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/ook/ook.pasm	Thu Mar 12 04:07:33 2009	(r37341)
@@ -120,7 +120,7 @@
         invokecc P0
         end
 
-# Given the content of P21, create a label of integers concateneted in S26.
+# Given the content of P21, create a label of integers concatenated in S26.
 MAKE_LABEL:
         set I25, P21
         set I26, 0

Modified: trunk/languages/regex/lib/Regex/Grammar.pm
==============================================================================
--- trunk/languages/regex/lib/Regex/Grammar.pm	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/regex/lib/Regex/Grammar.pm	Thu Mar 12 04:07:33 2009	(r37341)
@@ -439,7 +439,7 @@
 			};
 
 #DBG>			$debug & 0x10
-#DBG>		and	print STDERR "**Dicard invalid token ".&$ShowCurToken.".\n";
+#DBG>		and	print STDERR "**Discard invalid token ".&$ShowCurToken.".\n";
 
 			$$token=$$value=undef;
 		};

Modified: trunk/languages/scheme/lib/Scheme/Parser.pm
==============================================================================
--- trunk/languages/scheme/lib/Scheme/Parser.pm	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/scheme/lib/Scheme/Parser.pm	Thu Mar 12 04:07:33 2009	(r37341)
@@ -85,7 +85,7 @@
 
 The parser reads a list of tokens and turns it into a tree structure.
 The Nodes of the tree are hash references with either the attribute C<value>
-or the attribute C<children>. C<children> is an array reference with subbnodes.
+or the attribute C<children>. C<children> is an array reference with sub-nodes.
 
 =head1 AUTHOR
 

Modified: trunk/languages/urm/urmc
==============================================================================
--- trunk/languages/urm/urmc	Thu Mar 12 03:55:41 2009	(r37340)
+++ trunk/languages/urm/urmc	Thu Mar 12 04:07:33 2009	(r37341)
@@ -73,7 +73,7 @@
     print STDERR "WARNING: $warning is not standard URM at line $linenr\n";
 }
 
-### memory managment:
+### memory management:
 
 my $stackcount = 0;
 my %look_tbl;


More information about the parrot-commits mailing list