Subject: | [Patch] POD nit |
The attached patch fixes some POD, which renders wrong, at least at
search.cpan.org.
Subject: | pod.patch |
diff --git a/lib/DBM/Deep.pod b/lib/DBM/Deep.pod
index 33b7eb9..d0b344c 100644
--- a/lib/DBM/Deep.pod
+++ b/lib/DBM/Deep.pod
@@ -302,7 +302,7 @@ hash reference, not a lookup. Meaning, you should B<never> do this:
This causes an infinite loop, because for each iteration, Perl is calling
FETCH() on the $db handle, resulting in a "new" hash for foo every time, so
it effectively keeps returning the first key over and over again. Instead,
-assign a temporary variable to C<$db->{foo}>, then pass that to each().
+assign a temporary variable to C<< $db->{foo} >>, then pass that to each().
=head2 Arrays