summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod7
1 files changed, 5 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index d91cb04428..557d418546 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -1902,8 +1902,11 @@ Enter BLOCKs conditionally. The first EXPR to return true
causes the corresponding BLOCK to be entered, or, in the case
of C<else>, the fall-through default BLOCK.
-Take notice: Perl wants BLOCKS, expressions (like e.g. in C, C++, or
-Pascal) won't do.
+Note 1: Perl wants BLOCKS, expressions won't do (like they do
+e.g. in C, C++, Java, Pascal).
+
+Note 2: It's C<elsif>, not C<elseif>. You can have as many
+C<elsif>s as you want.
See L<perlsyn> for more details. See also C<unless>.