1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Author: Alexander Zangerl <az@debian.org>
Subject: improve documentation of internalize oddities
--- a/lib/TM.pm
+++ b/lib/TM.pm
@@ -1342,6 +1342,13 @@ Attention: If you call internalize like
then perl will (un)helpfully replace the required undef with the string "undef" and wreck the operation.
Using either a variable to hold the undef or replacing the (syntactic sugar) arrow with a comma works around this issue.
+Attention: If you call internalize like this
+
+ $tm->internalize(undef => $whatever)
+
+then perl will (un)helpfully replace the required undef with the string "undef" and wreck the operation.
+Using either a variable to hold the undef or replacing the (syntactic sugar) arrow with a comma works around this issue.
+
=item C<undef =E<gt> \ URI>
Like above, only that the URI us used as subject identifier.
|