[svn:parrot] r39846 - trunk/docs/book/pir
coke at svn.parrot.org
coke at svn.parrot.org
Tue Jun 30 18:25:05 UTC 2009
Author: coke
Date: Tue Jun 30 18:25:05 2009
New Revision: 39846
URL: https://trac.parrot.org/parrot/changeset/39846
Log:
fix typo
Modified:
trunk/docs/book/pir/ch09_exceptions.pod
Modified: trunk/docs/book/pir/ch09_exceptions.pod
==============================================================================
--- trunk/docs/book/pir/ch09_exceptions.pod Tue Jun 30 18:24:00 2009 (r39845)
+++ trunk/docs/book/pir/ch09_exceptions.pod Tue Jun 30 18:25:05 2009 (r39846)
@@ -110,7 +110,7 @@
This example creates an exception handler C<my_handler> and then runs a a
division operation that will throw a "division by zero" exception if C<$I2> is
-0. When C<$I2> is 0, C<div> throws an exceptoin. The exception handler catches
+0. When C<$I2> is 0, C<div> throws an exception. The exception handler catches
it, prints "caught an exception", and then clears itself with C<pop_eh>. When
C<$I2> is a non-zero value, there is no exception. The code clears the
exception handler with C<pop_eh>, then prints "maybe printed". The C<goto>
More information about the parrot-commits
mailing list