From 13cecb988c85b960b93019a5d75f7fc534b8ce71 Mon Sep 17 00:00:00 2001 From: "Wenzel P. P. Peppmeyer" Date: Sat, 1 Oct 2016 00:39:45 +0200 Subject: [PATCH] IO.close may requite a LEAVE too --- doc/Type/IO.pod6 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/Type/IO.pod6 b/doc/Type/IO.pod6 index 38d7d07f6..2d699b2d7 100644 --- a/doc/Type/IO.pod6 +++ b/doc/Type/IO.pod6 @@ -264,7 +264,8 @@ written equivalently like so: close $fh; When a file was opened for writing, closing it is important to ensure that all -contents are actually written to the file. +contents are actually written to the file. You may want to consider using a +L phaser to guard against exceptions. =head2 sub slurp