summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@semiotic.systems>2022-04-03 10:40:40 -0400
committerRicardo Signes <rjbs@semiotic.systems>2022-05-20 13:59:11 -0400
commit62fa8c24cddea422abeb11f36ff00faf94d5f86c (patch)
treee0dcb51a72e9b921e8599b848045f3624b54044e
parentffe0c56f06d25a9647e2525b54d7948e0a73b26c (diff)
downloadperl-62fa8c24cddea422abeb11f36ff00faf94d5f86c.tar.gz
perl5360delta: isbool is now builtin::is_bool
-rw-r--r--pod/perldelta.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 64630e9b8b..857b13a200 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -89,7 +89,7 @@ so that C<die> can report the line in perl that triggered it.
The "true" and "false" boolean values, often accessed by constructions like
C<!!0> and C<!!1>, as well as being returned from many core functions and
operators, now remember their boolean nature even through assignment into
-variables. The new function C<isbool()> in L<Scalar::Util> can check whether
+variables. The new function C<is_bool()> in L<builtin> can check whether
a value has boolean nature.
This is likely to be useful when interoperating with other languages or