diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-11 08:33:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-11 08:33:13 +0000 |
commit | 9b55d3abafa1e65a2202aa8a5382f9d9a5ad7fc9 (patch) | |
tree | e9a71547853907e0fa6abc59f7efd0e4bf611e53 /pod/perlfaq5.pod | |
parent | c5a29f4004592b2ad76f103411af81e53655e50a (diff) | |
download | perl-9b55d3abafa1e65a2202aa8a5382f9d9a5ad7fc9.tar.gz |
Typo fix from Boris Zentner.
p4raw-id: //depot/perl@20611
Diffstat (limited to 'pod/perlfaq5.pod')
-rw-r--r-- | pod/perlfaq5.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfaq5.pod b/pod/perlfaq5.pod index 9e30b54cfd..cad896d71f 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. |