From a8a952ac9c07a8254536cedb5c335421253cec57 Mon Sep 17 00:00:00 2001 From: "David H. Adler" Date: Mon, 23 Nov 2015 16:49:50 -0500 Subject: [PATCH] Changed "item" to "scalar" in section on scalar sigils --- doc/Language/5to6-nutshell.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Language/5to6-nutshell.pod b/doc/Language/5to6-nutshell.pod index 7f7d6b3a8..772e50832 100644 --- a/doc/Language/5to6-nutshell.pod +++ b/doc/Language/5to6-nutshell.pod @@ -181,7 +181,7 @@ name. =head4 C<$> Scalar -The C<$> sigil is now always used with "item" variables (e.g. C<$name>), +The C<$> sigil is now always used with "scalar" variables (e.g. C<$name>), and no longer for L and L. That is, you will still use C<$x[1]> and C<$x{"foo"}>, but you use them on C<$x>, not C<@x> or C<%x>.