Skip to content

Commit

Permalink
Fixed some dangling cross-references (GH chromatic#167).
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Oct 20, 2011
1 parent f6acb83 commit a8499ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions sections/exceptions.pod
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ X<exceptions; C<$@>>

C<die()> sets the global variable C<$@> to its operand and immediately exits
the current function I<without returning anything>. This thrown exception will
continue up the call stack (L<call_stack>) until something catches it. If
nothing catches the exception, the program will exit with an error.
continue up the call stack (L<controlled_execution>) until something catches
it. If nothing catches the exception, the program will exit with an error.

=begin sidebar

Expand Down
3 changes: 1 addition & 2 deletions sections/files.pod
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ operation. The final operand is the name of the file. If the C<open> fails, the
C<die> clause will throw an exception, with the contents of C<$!> giving the
reason why the open failed.

You may also open files for writing, appending, reading and writing, and more
(L<file_modes_table>).
You may also open files for writing, appending, reading and writing, and more.

=begin table File Modes

Expand Down
1 change: 0 additions & 1 deletion sections/idioms.pod
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ users can run directly. All you need to do is to discover I<how> Perl began to
execute a piece of code. For this, use C<caller>.

X<builtins; C<caller>>
X<call_stack>

C<caller>'s single optional argument is the number of call frames which to
report. (A I<call frame> is the bookkeeping information which represents a
Expand Down

0 comments on commit a8499ca

Please sign in to comment.