Git fork

correct a few doubled-word nits in comments and documentation

Found by running this command:
$ git ls-files -z|xargs -0 perl -0777 -n \
-e 'while (/\b(then?|[iao]n|i[fst]|but|f?or|at|and|[dt]o)\s+\1\b/gims)' \
-e ' {' \
-e ' $n = ($` =~ tr/\n/\n/ + 1);' \
-e ' ($v = $&) =~ s/\n/\\n/g;' \
-e ' print "$ARGV:$n:$v\n";' \
-e ' }'

Why not just git grep -E ...?
That wouldn't work then the doubled words are separated by a newline.
This is derived from a Makefile syntax-check rule in gnulib's maint.mk:
http://git.sv.gnu.org/cgit/gnulib.git/tree/top/maint.mk

Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Jim Meyering and committed by
Junio C Hamano
65c2b2b5 a7793a74

+4 -4
+1 -1
Documentation/git-sh-i18n--envsubst.txt
··· 25 25 'git sh-i18n{litdd}envsubst' is Git's stripped-down copy of the GNU 26 26 `envsubst(1)` program that comes with the GNU gettext package. It's 27 27 used internally by linkgit:git-sh-i18n[1] to interpolate the variables 28 - passed to the the `eval_gettext` function. 28 + passed to the `eval_gettext` function. 29 29 30 30 No promises are made about the interface, or that this 31 31 program won't disappear without warning in the next version
+1 -1
attr.h
··· 40 40 41 41 /* 42 42 * Retrieve all attributes that apply to the specified path. *num 43 - * will be set the the number of attributes on the path; **check will 43 + * will be set to the number of attributes on the path; **check will 44 44 * be set to point at a newly-allocated array of git_attr_check 45 45 * objects describing the attributes and their values. *check must be 46 46 * free()ed by the caller.
+1 -1
gitweb/static/js/lib/cookies.js
··· 30 30 * If a negative value is specified or a date in the past), 31 31 * the cookie will be deleted. 32 32 * If set to null or omitted, the cookie will be a session cookie 33 - * and will not be retained when the the browser exits. 33 + * and will not be retained when the browser exits. 34 34 * @param {String} [options.path] Restrict access of a cookie to particular directory 35 35 * (default: path of page that created the cookie). 36 36 * @param {String} [options.domain] Override what web sites are allowed to access cookie
+1 -1
po/README
··· 178 178 179 179 C: 180 180 181 - - Include builtin.h at the top, it'll pull in in gettext.h, which 181 + - Include builtin.h at the top, it'll pull in gettext.h, which 182 182 defines the gettext interface. Consult with the list if you need to 183 183 use gettext.h directly. 184 184