From 14e0150b7147ca1d2ecf8d775b63e6233177da6e Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 16 Jan 2025 01:16:50 -0500 Subject: [PATCH] perlclass: the statement form only affects the enclosing scope --- pod/perlclass.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perlclass.pod b/pod/perlclass.pod index 930341388a62..be67f5622784 100644 --- a/pod/perlclass.pod +++ b/pod/perlclass.pod @@ -70,8 +70,8 @@ used within the scope of this declaration. Classes can be declared in either block or statement syntax. If a block is used, the body of the block contains the implementation of the class. If the -statement form is used, the remainder of the file is used up until the next -C or C statement. +statement form is used, the remainder of the current scope or file is used up +until the next C or C statement. A C declaration can optionally have a version number, similar to the C keyword. It can also optionally have attributes. If both are