[svn:parrot] r41571 - trunk/docs

dukeleto at svn.parrot.org dukeleto at svn.parrot.org
Wed Sep 30 03:30:23 UTC 2009


Author: dukeleto
Date: Wed Sep 30 03:30:15 2009
New Revision: 41571
URL: https://trac.parrot.org/parrot/changeset/41571

Log:
[TT #592][docs] Clarify docs about the case sensitivity of the debugger

Modified:
   trunk/docs/debugger.pod

Modified: trunk/docs/debugger.pod
==============================================================================
--- trunk/docs/debugger.pod	Wed Sep 30 03:22:22 2009	(r41570)
+++ trunk/docs/debugger.pod	Wed Sep 30 03:30:15 2009	(r41571)
@@ -64,8 +64,8 @@
 Most commands can be shortened to their first letter. When available, this is
 signaled by the letter in parentheses after the command name Thus, C<help (h)>
 means that the command can be given as 'help' or just 'h'. On the other hand,
-C<load> can only be given as 'load', verbatim.  And the debugger is case
-sensitive.
+C<load> can only be given as 'load', verbatim.  Debugger commands are case
+sensitive (LOAD is not a valid command) but Parrot register names are not.
 
 A blank line always repeats the last command entered.
 
@@ -88,7 +88,8 @@
 
         N1 = 3.14
 
-The first command sets I0 to 42 and the second sets N1 to 3.14.
+The first command sets I0 to 42 and the second sets N1 to 3.14. Register names are not
+case sensitive, so you can use either i0 or I0 .
 
 =item disassemble
 
@@ -289,7 +290,7 @@
 
 =item print (p)
 
-Print the interpreter registers. The syntax is:
+Print the interpreter registers. Register names are not case sensitive. The syntax is:
 
   print VALUE
 


More information about the parrot-commits mailing list