From: Jarkko Hietaniemi Date: Mon, 11 Aug 2003 08:33:13 +0000 (+0000) Subject: Typo fix from Boris Zentner. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9b55d3abafa1e65a2202aa8a5382f9d9a5ad7fc9;p=p5sagit%2Fp5-mst-13.2.git Typo fix from Boris Zentner. p4raw-id: //depot/perl@20611 --- diff --git a/pod/perlfaq5.pod b/pod/perlfaq5.pod index 9e30b54..cad896d 100644 --- a/pod/perlfaq5.pod +++ b/pod/perlfaq5.pod @@ -549,7 +549,7 @@ which must be done in one. That's why computer hardware provides an atomic test-and-set instruction. In theory, this "ought" to work: sysopen(FH, "file.lock", O_WRONLY|O_EXCL|O_CREAT) - or die "can't open file.lock: $!": + or die "can't open file.lock: $!"; except that lamentably, file creation (and deletion) is not atomic over NFS, so this won't work (at least, not every time) over the net.