Skip to content

Commit ca72742

Browse files
committed
Fix more typos
Signed-off-by: Sebastian Pipping <[email protected]>
1 parent 404d670 commit ca72742

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ LCOV features and capabilities fall into 7 major categories:
450450
to lcov format.
451451

452452
See "llvm2lcov --help" for brief instruction on how to use the
453-
translator. Note tha llvm2lcov uses a similar set of command line
453+
translator. Note that llvm2lcov uses a similar set of command line
454454
and configuration file options as lcov, genhtml, and geninfo.
455455

456456
- py2lcov:

bin/genhtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6162,7 +6162,7 @@ sub compute_one
61626162
!$main::show_tla) {
61636163
$summary->[SummaryInfo::FILE_DETAILS] = undef;
61646164
} elsif ($main::show_tla) {
6165-
# just store the location fo the first coverpoint in each display
6165+
# just store the location of the first coverpoint in each display
61666166
# group - rather than returning the whole detail structure?
61676167
$summary->[SummaryInfo::FILE_DETAILS]->simplify();
61686168
}

example/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ test_differential:
212212
@echo "point your browser to `realpath $(REPO)`/differential/index.html"
213213

214214
@echo "Step 7: Generate subset report for code review:"
215-
@echo " (re-use revision control data cached in previous step)"
215+
@echo " (reuse revision control data cached in previous step)"
216216
(cd $(REPO) ; \
217217
$(GENHTML) -o review --baseline-file baseline.info \
218218
--diff-file udiff.txt --show-owners \

lcovrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ lcov_json_module = auto
458458
# giving up
459459
# max_fork_fails = 5
460460

461-
# Throtting control: the maximum number of files that genhtml will
461+
# Throttling control: the maximum number of files that genhtml will
462462
# handle in a single (parallel) thread
463463
# max_tasks_per_core = 20
464464

man/lcov.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ Apply all substitution patterns in order - the result of the first pattern is us
791791
If a file corresponding to the resulting name exists: return it.
792792
.PP
793793
.IP 3. 3
794-
Apply the 'resolve' callback ot the final result of pattern substitutions.
794+
Apply the 'resolve' callback to the final result of pattern substitutions.
795795
.br
796796
If a file corresponding to the resulting name exists: return it.
797797
.PP

man/lcovrc.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2903,7 +2903,7 @@ The select script is called as:
29032903

29042904
.B " select_script"
29052905
[callback_args]
2906-
.I lineDataJson annotateDataJson filenName lineNumber
2906+
.I lineDataJson annotateDataJson fileName lineNumber
29072907

29082908
or as:
29092909

scripts/p4annotate.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# of cached files - and may result in out-of-sync annotated file data.
3838
#
3939
# The '--verify' flag tells the tool to do some additional consistency
40-
# checking whe merging local edits into the annotated file.
40+
# checking when merging local edits into the annotated file.
4141
#
4242
# The '--log' flag specifies a file where the tool writes various annotation-
4343
# related log messages.

tests/lcov/errs/errs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ fi
309309
# data consistency errors:
310310
# - function marked 'hit' but no contained lines are hit
311311
# - function marked 'not hit' but some contained line is hit
312-
# - line marked 'hit' but no contained braches have been evaluated
312+
# - line marked 'hit' but no contained branches have been evaluated
313313
# - line marked 'not hit' but at least one contained branch has been evaluated
314314
for i in funcNoLine lineNoFunc branchNoLine lineNoBranch ; do
315315

tests/lcov/extract/testContext.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
if [ 'die' = "$1" ] ; then
4-
echo "dieing"
4+
echo "dying"
55
exit 1
66
fi
77

0 commit comments

Comments
 (0)