Skip to content

Commit 3f50526

Browse files
committed
Fix typos, minor doc updates.
Signed-off-by: Henry cox <[email protected]>
1 parent 401e15b commit 3f50526

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

README

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-------------------------------------------------
22
- README file for the LTP GCOV extension (LCOV) -
3-
- Last changes: 2024-11-20
3+
- Last changes: 2024-11-26
44
-------------------------------------------------
55

66
Description
@@ -19,6 +19,8 @@ Description
1919
view, a flat list of all source files in the project, or a three-level
2020
detail view: directory, file and source code view.
2121

22+
* Support for multiple languages - including C/C++, Perl, and Python.
23+
2224
LCOV was initially designed to support Linux kernel coverage measurements,
2325
but works as well for coverage measurements on standard user space
2426
applications.
@@ -45,7 +47,7 @@ Further README contents
4547
3. Dependencies
4648
4. An example of how to access kernel coverage data
4749
5. An example of how to access coverage data for a user space program
48-
6. New features in lcov 2.0
50+
6. LCOV features
4951
7. Questions and Comments
5052
8. Filing a new issue
5153

@@ -292,10 +294,10 @@ Point the web browser of your choice to the resulting index.html file.
292294
as well as the examples in .../tests/gendiffcov.
293295

294296

295-
6. New features:
296-
----------------
297+
6. LCOV Features:
298+
-----------------
297299

298-
New features and capabilities fall into 7 major categories:
300+
LCOV features and capabilities fall into 7 major categories:
299301

300302
a) Categorization
301303

lib/lcovutil.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8590,7 +8590,7 @@ sub _read_info
85908590
($1, $2, $3, $4, $5, $6);
85918591
if ($line <= 0) {
85928592
lcovutil::ignorable_error($lcovutil::ERROR_FORMAT,
8593-
"\"$tracefile\":$.: unexpected line number '$line' in condition data record record '$_'"
8593+
"\"$tracefile\":$.: unexpected line number '$line' in condition data record '$_'."
85948594
);
85958595
last;
85968596
}
@@ -8816,7 +8816,7 @@ sub write_info($$$)
88168816

88178817
if ($line <= 0) {
88188818
lcovutil::ignorable_error($lcovutil::ERROR_FORMAT,
8819-
"\"$source_file\": unexpected line number '$line' in branch data record record '$_'"
8819+
"\"$source_file\": unexpected line number '$line' in branch data record."
88208820
);
88218821
last;
88228822
}

man/genhtml.1

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2710,9 +2710,6 @@ option
27102710
Specify whether to display Modifie Condition / Decision Coverage (MC/DC)
27112711
data in HTML output.
27122712

2713-
Use
2714-
.B \-\-mcdc\-coverage
2715-
to enable MC/DC display or
27162713
MC/DC data display is
27172714
.B disabled
27182715
by default.
@@ -2736,16 +2733,16 @@ True sense of subexpression was sensitized: if this subexpression's value had be
27362733
.IP t: 3
27372734
True sense of subexpression was
27382735
.B not
2739-
sensitized: the condiiton result would not change if the subexpression value was different.
2736+
sensitized: the conditon result would not change if the subexpression value was different.
27402737
.IP F:
27412738
False sense of subexpression was sensitized: if this subexpression's value had been true, then the condition resut would have been different.
27422739
.IP f:
27432740
False sense of subexpression was
27442741
.B not
2745-
sensitized: the condiiton result would not change if the subexpression value was different.
2742+
sensitized: the conditon result would not change if the subexpression value was different.
27462743
.RE
27472744

2748-
Note that branch and MC/DC coverage are identical if the condiition is
2745+
Note that branch and MC/DC coverage are identical if the condition is
27492746
a simple expression -
27502747
.I e.g.,
27512748
.RS 3

0 commit comments

Comments
 (0)