diff options
author | ka7 <[email protected]> | 2017-01-03 18:31:18 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-01-03 11:31:18 -0600 |
commit | 4e33ba4c389f59b74138bf7130e924a4230d64e9 (patch) | |
tree | 6707105987e45e846d0b0a5f0ad6e3e30191e77f /scripts | |
parent | a5e046eaacad20487188c9eef231554e1401d8c9 (diff) |
Fix spelling
Reviewed-by: Brian Behlendorf <[email protected]
Reviewed-by: Giuseppe Di Natale <[email protected]>>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Haakan T Johansson <[email protected]>
Closes #5547
Closes #5543
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/common.sh.in | 4 | ||||
-rwxr-xr-x | scripts/cstyle.pl | 2 | ||||
-rwxr-xr-x | scripts/zfs-helpers.sh | 2 | ||||
-rwxr-xr-x | scripts/zimport.sh | 2 | ||||
-rwxr-xr-x | scripts/zpios-profile/zpios-profile.sh | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/scripts/common.sh.in b/scripts/common.sh.in index 010b534be..38fc6985a 100644 --- a/scripts/common.sh.in +++ b/scripts/common.sh.in @@ -567,8 +567,8 @@ udev_trigger() { udev_setup() { local SRC_PATH=$1 - # When running in tree manually contruct symlinks in tree to - # the proper devices. Symlinks are installed for all entires + # When running in tree manually construct symlinks in tree to + # the proper devices. Symlinks are installed for all entries # in the config file regardless of if that device actually # exists. When installed as a package udev can be relied on for # this and it will only create links for devices which exist. diff --git a/scripts/cstyle.pl b/scripts/cstyle.pl index 7baf25545..06bce77bd 100755 --- a/scripts/cstyle.pl +++ b/scripts/cstyle.pl @@ -64,7 +64,7 @@ my $usage = -C don't check anything in header block comments -P check for use of non-POSIX types -o constructs - allow a comma-seperated list of optional constructs: + allow a comma-separated list of optional constructs: doxygen allow doxygen-style block comments (/** /*!) splint allow splint-style lint comments (/*@ ... @*/) "; diff --git a/scripts/zfs-helpers.sh b/scripts/zfs-helpers.sh index 6e97ce1e2..0354cc0ed 100755 --- a/scripts/zfs-helpers.sh +++ b/scripts/zfs-helpers.sh @@ -42,7 +42,7 @@ DESCRIPTION: OPTIONS: -d Dry run -h Show this message - -i Install the helper utilties + -i Install the helper utilities -r Remove the helper utilities -v Verbose diff --git a/scripts/zimport.sh b/scripts/zimport.sh index 3488460ee..da747b0ad 100755 --- a/scripts/zimport.sh +++ b/scripts/zimport.sh @@ -273,7 +273,7 @@ if [ ! -d $IMAGES_DIR ]; then fi # Given the available images in the zfs-images directory substitute the -# list of available images for the reserved keywork 'all'. +# list of available images for the reserved keyword 'all'. for TAG in $POOL_TAGS; do if [ "$TAG" = "all" ]; then diff --git a/scripts/zpios-profile/zpios-profile.sh b/scripts/zpios-profile/zpios-profile.sh index f4f0ee97f..bd3c9c504 100755 --- a/scripts/zpios-profile/zpios-profile.sh +++ b/scripts/zpios-profile/zpios-profile.sh @@ -91,7 +91,7 @@ check_pid() { } # NOTE: This whole process is crazy slow but it will do for now -aquire_pids() { +acquire_pids() { echo "--- Aquiring ZFS pids ---" for PID in `ls /proc/ | grep [0-9] | sort -n -u`; do @@ -218,7 +218,7 @@ log_pids() { done } -aquire_pids +acquire_pids log_pids # rm ${PROFILE_PID} |