Document return from do FILE
M.J.T. Guy [Tue, 18 Mar 1997 14:50:10 +0000 (14:50 +0000)]
I observe by experiment that you can use 'return' to exit from a 'do',
but this fact is not documented.

p5p-msgid: E0w70DK-0001yJ-00@ursa.cus.cam.ac.uk

pod/perlfunc.pod

index 0372ee3..da066c8 100644 (file)
@@ -2501,7 +2501,7 @@ so you'll probably want to use them instead.  See L</my>.
 
 =item return LIST
 
-Returns from a subroutine or eval with the value specified.  (Note that
+Returns from a subroutine, eval or do with the value specified.  (Note that
 in the absence of a return a subroutine or eval() will automatically
 return the value of the last expression evaluated.)