diff options
Diffstat (limited to 'pod/perlopentut.pod')
-rw-r--r-- | pod/perlopentut.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlopentut.pod b/pod/perlopentut.pod index 9139ebc3df..ea4b307b45 100644 --- a/pod/perlopentut.pod +++ b/pod/perlopentut.pod @@ -449,7 +449,7 @@ be 0777, and for anything else, 0666. Why so permissive? Well, it isn't really. The MASK will be modified by your process's current C<umask>. A umask is a number representing I<disabled> permissions bits; that is, bits that will not be turned on -in the created files' permissions field. +in the created file's permissions field. For example, if your C<umask> were 027, then the 020 part would disable the group from writing, and the 007 part would disable others |