Skip to content

Commit aebc4bd

Browse files
committed
Merge branch 'ak/more-typofixes'
More typofixes. * ak/more-typofixes: t: fix typos
2 parents 43ac239 + f56f9d6 commit aebc4bd

26 files changed

+37
-37
lines changed

t/t3431-rebase-fork-point.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test_rebase 'G F C D B A' --onto D main
7474
test_rebase 'G F C B A' --keep-base refs/heads/main
7575
test_rebase 'G F C B A' --keep-base main
7676

77-
test_expect_success 'git rebase --fork-point with ambigous refname' '
77+
test_expect_success 'git rebase --fork-point with ambiguous refname' '
7878
git checkout main &&
7979
git checkout -b one &&
8080
git checkout side &&

t/t3504-cherry-pick-rerere.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ test_expect_success 'cherry-pick conflict with --rerere-autoupdate' '
4343
git reset --hard bar-dev
4444
'
4545

46-
test_expect_success 'cherry-pick conflict repsects rerere.autoUpdate' '
46+
test_expect_success 'cherry-pick conflict respects rerere.autoUpdate' '
4747
test_config rerere.autoUpdate true &&
4848
test_must_fail git cherry-pick foo..bar-main &&
4949
test_cmp foo-expect foo &&

t/t3920-crlf-messages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ test_crlf_subject_body_and_contents() {
8282

8383

8484
test_expect_success 'Setup refs with commit and tag messages using CRLF' '
85-
test_commit inital &&
85+
test_commit initial &&
8686
create_crlf_refs
8787
'
8888

t/t5303-pack-corruption-resilience.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ TEST_PASSES_SANITIZE_LEAK=true
1515
# 1) blob_2 is a delta with blob_1 for base and blob_3 is a delta with blob2
1616
# for base, such that blob_3 delta depth is 2;
1717
#
18-
# 2) the bulk of object data is uncompressible so the text part remains
18+
# 2) the bulk of object data is incompressible so the text part remains
1919
# visible;
2020
#
2121
# 3) object header is always 2 bytes.

t/t5324-split-commit-graph.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ then
203203
graph_git_behavior 'alternate: commit 13 vs 6' commits/13 origin/commits/6 "fork"
204204
fi
205205

206-
test_expect_success 'test merge stragety constants' '
206+
test_expect_success 'test merge strategy constants' '
207207
git clone . merge-2 &&
208208
(
209209
cd merge-2 &&

t/t5329-pack-objects-cruft.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ test_expect_success 'cruft --local drops unreachable objects' '
690690
test_when_finished "rm -fr alternate repo" &&
691691
692692
test_commit -C alternate base &&
693-
# Pack all objects in alterate so that the cruft repack in "repo" sees
693+
# Pack all objects in alternate so that the cruft repack in "repo" sees
694694
# the object it dropped due to `--local` as packed. Otherwise this
695695
# object would not appear packed anywhere (since it is not packed in
696696
# alternate and likewise not part of the cruft pack in the other repo

t/t5411/test-0034-report-ft.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test_expect_success "setup proc-receive hook (ft, $PROTOCOL)" '
1010
# Refs of upstream : main(A)
1111
# Refs of workbench: main(A) tags/v123
1212
# git push : refs/for/main/topic(B)
13-
test_expect_success "proc-receive: fall throught, let receive-pack to execute ($PROTOCOL)" '
13+
test_expect_success "proc-receive: fall through, let receive-pack to execute ($PROTOCOL)" '
1414
git -C workbench push origin \
1515
$B:refs/for/main/topic \
1616
>out 2>&1 &&

t/t5411/test-0035-report-ft--porcelain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test_expect_success "setup proc-receive hook (fall-through, $PROTOCOL/porcelain)
1010
# Refs of upstream : main(A)
1111
# Refs of workbench: main(A) tags/v123
1212
# git push : refs/for/main/topic(B)
13-
test_expect_success "proc-receive: fall throught, let receive-pack to execute ($PROTOCOL/porcelain)" '
13+
test_expect_success "proc-receive: fall through, let receive-pack to execute ($PROTOCOL/porcelain)" '
1414
git -C workbench push --porcelain origin \
1515
$B:refs/for/main/topic \
1616
>out 2>&1 &&

t/t5500-fetch-pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ test_expect_success 'in_vain not triggered before first ACK' '
418418
test_grep "remote: Total 3 " log
419419
'
420420

421-
test_expect_success 'in_vain resetted upon ACK' '
421+
test_expect_success 'in_vain reset upon ACK' '
422422
test_when_finished rm -f log trace2 &&
423423
rm -rf myserver myclient &&
424424
git init myserver &&

t/t5528-push-default.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ test_expect_success 'push from/to new branch fails with upstream and simple ' '
147147
# - the default push succeeds
148148
#
149149
# A previous test expected this to fail, but for the wrong reasons:
150-
# it expected a fail becaause the branch is new and cannot be pushed, but
150+
# it expected to fail because the branch is new and cannot be pushed, but
151151
# in fact it was failing because of an ambiguous remote
152152
#
153153
test_expect_failure 'push from/to new branch fails with matching ' '

0 commit comments

Comments
 (0)