Skip to content
Snippets Groups Projects

Fix some Typos

Merged Sebastian Döbel requested to merge s8916149_typos into preview
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -33,7 +33,7 @@ In this sense, you should minimize the usage of system calls querying or modifyi
@@ -33,7 +33,7 @@ In this sense, you should minimize the usage of system calls querying or modifyi
and directory attributes, e.g. `stat()`, `statx()`, `open()`, `openat()` etc.
and directory attributes, e.g. `stat()`, `statx()`, `open()`, `openat()` etc.
Please, also avoid commands basing on the above mentioned system calls such as `ls -l` and
Please, also avoid commands basing on the above mentioned system calls such as `ls -l` and
`ls --color`. Instead, you should invoke `ls` or `ls -l <filename` to reduce metadata operations.
`ls --color`. Instead, you should invoke `ls` or `ls -l <filename>` to reduce metadata operations.
This also holds for commands walking the filesystems recursively performing massive metadata
This also holds for commands walking the filesystems recursively performing massive metadata
operations such as `ls -R`, `find`, `locate`, `du` and `df`.
operations such as `ls -R`, `find`, `locate`, `du` and `df`.
Loading