diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2003-04-25 11:18:50 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2003-04-25 11:18:50 +0000 |
commit | a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe (patch) | |
tree | abf9f9bdf206887f87412f272066e0689f481c30 /Functions/Misc/relative | |
parent | 83932ba23f06a467f33b4138484f7b0423660182 (diff) | |
download | zsh-a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe.tar.gz zsh-a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe.tar.xz zsh-a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe.zip |
18472: spelling corrections
Diffstat (limited to 'Functions/Misc/relative')
-rw-r--r-- | Functions/Misc/relative | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Functions/Misc/relative b/Functions/Misc/relative index f649e51e7..432f2e2da 100644 --- a/Functions/Misc/relative +++ b/Functions/Misc/relative @@ -15,7 +15,7 @@ local -a cur abs cur=(${(s:/:)2}) # Split 'current' directory into cur abs=(${(s:/:)1} $3) # Split target directory into abs -# Compute the length of the common prefix, or discover a subdiretory: +# Compute the length of the common prefix, or discover a subdirectory: integer i=1 while [[ i -le $#abs && $abs[i] == $cur[i] ]] do |