Author: allison
Date: Wed Mar 22 18:04:22 2006
New Revision: 11994

Modified:
   trunk/   (props changed)
   trunk/src/ops/string.ops
   trunk/src/ops/var.ops

Log:
A few exception-related documentation fixes to ops.

Modified: trunk/src/ops/string.ops
==============================================================================
--- trunk/src/ops/string.ops    (original)
+++ trunk/src/ops/string.ops    Wed Mar 22 18:04:22 2006
@@ -551,7 +551,7 @@
 =item B<find_charset>(out INT, in STR)
 
 Return the charset number of the charset named $2. If the charset doesn't
-exit, throw an exception.
+exist, throw an exception.
 
 =item B<trans_charset>(inout STR, in INT)
 
@@ -606,7 +606,7 @@
 =item B<find_encoding>(out INT, in STR)
 
 Return the encoding number of the encoding named $2. If the encoding doesn't
-exit, throw an exception.
+exist, throw an exception.
 
 =item B<trans_encoding>(inout STR, in INT)
 

Modified: trunk/src/ops/var.ops
==============================================================================
--- trunk/src/ops/var.ops       (original)
+++ trunk/src/ops/var.ops       Wed Mar 22 18:04:22 2006
@@ -129,13 +129,13 @@
 
 Find the global named $2 and store it in $1. If the global doesn't exist
 either throws an exception or sets $1 to the Null PMC, depending on current
-errors settings, s. B<errorson>.
+errors settings. See B<errorson>.
 
 =item B<find_global>(out PMC, in STR, in STR)
 
 Find the global named $3 in namespace $2 and store it in $1. If the
 global doesn't exist either throws an exception or sets $1 to the Null PMC,
-depending on current errors settings, s. B<errorson>.
+depending on current errors settings. See B<errorson>.
 
 If $3 is NULL the namespace hash for namespace $2 is returned.
 
@@ -143,8 +143,8 @@
 
 Find the global named $3 in the namespace specified by $2
 and store it in $1. If the global doesn't exist either throws an
-exception or sets $1 to the Null PMC, depending on current errors settings,
-s. B<errorson>.
+exception or sets $1 to the Null PMC, depending on current errors settings.
+See B<errorson>.
 
 =cut
 
@@ -185,7 +185,7 @@
 Find the name $2 in lexical, current, global, or builtin namespace and
 store it in $1. If the name doesn't exist
 either throws an exception or sets $1 to PMCNULL, depending on current
-errors settings, s. B<errorson>.
+errors settings. See B<errorson>.
 
 =cut
 

Reply via email to