diff options
author | Dimitris Apostolou <dimitris.apostolou@icloud.com> | 2021-11-12 23:33:37 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2021-11-12 23:54:34 +0100 |
commit | 356dcb20cef387a5eea5f8fcbfe123b24e3bb928 (patch) | |
tree | d5b153637b9652f6dd8edc1acdac4ef589579765 /Completion/Linux | |
parent | c7f4634549697a65af0dc82e97e8b066bfb81f6c (diff) | |
download | zsh-356dcb20cef387a5eea5f8fcbfe123b24e3bb928.tar.gz zsh-356dcb20cef387a5eea5f8fcbfe123b24e3bb928.tar.xz zsh-356dcb20cef387a5eea5f8fcbfe123b24e3bb928.zip |
github #82: Fix typos
Diffstat (limited to 'Completion/Linux')
-rw-r--r-- | Completion/Linux/Command/_modutils | 2 | ||||
-rw-r--r-- | Completion/Linux/Command/_sysstat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Linux/Command/_modutils b/Completion/Linux/Command/_modutils index 1205f2506..3e46130a2 100644 --- a/Completion/Linux/Command/_modutils +++ b/Completion/Linux/Command/_modutils @@ -105,7 +105,7 @@ _modutils() { loaded-modules|loadable-modules) if [[ -r /proc/modules ]]; then loaded_modules=(${${(f)"$(</proc/modules)"}%% *}) - # For compatibilty with old systems. Kernels nowadays provide + # For compatibility with old systems. Kernels nowadays provide # `/proc/modules` which is more reliable and faster for us. elif [[ -x /sbin/lsmod ]]; then loaded_modules=(${${(f)"$(_call_program loaded-modules /sbin/lsmod)"}[2,-1]%% *}) diff --git a/Completion/Linux/Command/_sysstat b/Completion/Linux/Command/_sysstat index eba99fc5a..5620da73d 100644 --- a/Completion/Linux/Command/_sysstat +++ b/Completion/Linux/Command/_sysstat @@ -52,7 +52,7 @@ _sadf() { '(-g -j -p -r -x)-h[print on a single line when used with -d]' \ '-O[specify output options]: : _values -s , option autoscale bwcol customcol height\:value oneday packed showidle showinfo showtoc skipempty hz\:value pcparchive\:name\:_files debug' \ - '-P[restrict processor dependant statistics]:processor number(zero indexed) or ALL:(ALL)' \ + '-P[restrict processor dependent statistics]:processor number(zero indexed) or ALL:(ALL)' \ '--dev=-[specify block devices for which statistics are to be displayed]:block device:_files -g "*(-%)"' \ '--fs=-[specify filesystems for which statistics are to be displayed]:file system:_dir_list -s ,' \ '--iface=-[specify network interfaces for which statistics are to be displayed]:network interface:_sequence _net_interfaces' \ |