From b130ed810e24c961338d584b2adac97cab3b77ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1draig=20Brady?=
Date: Sun, 3 May 2026 10:39:45 +0100 Subject: [PATCH] doc: fix typo in chmod example * doc/coreutils.texi (chmod invocation): s/file/foo/ to match comment, and previous example. --- doc/coreutils.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 26d405b0b..a37b63388 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -11641,8 +11641,8 @@ chmod 644 foo chmod a=r,u+w foo # Add user and group execute permissions to FOO. -chmod +110 file -chmod ug+x file +chmod +110 foo +chmod ug+x foo # Set file permissions of DIR and subsidiary files to # be the umask default, assuming execute permissions for