Skip to content

Commit 03b34d8

Browse files
authored
Correct some typos in geninfo.1 (#320)
* Correct some typos in geninfo.1 * Update man/geninfo.1 Signed-off-by: Ned Batchelder <[email protected]>
1 parent 528c97b commit 03b34d8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

man/geninfo.1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ See the
13321332
.BI "\-\-version\-script " callback_script
13331333
documentation and the sample usage in the lcov regression test examples.
13341334

1335-
Function converage data follows.
1335+
Function coverage data follows.
13361336
Note that the format of the function coverage data has changed from LCOV 2.2 onward.
13371337
The tool continues to be able to read the old format but now writes only the
13381338
new format.
@@ -1389,14 +1389,14 @@ FNH:<number of function hit>
13891389

13901390
Note that, as of LCOV 2.2, these numbers count function groups - not the individual aliases.
13911391

1392-
Branch coverage information is stored which one line per branch:
1392+
Branch coverage information is stored with one line per branch:
13931393

13941394
.RS
13951395
BRDA:<line_number>,[<exception>]<block>,<branch>,<taken>
13961396
.RE
13971397

13981398
.I <line_number>
1399-
is the line number where the branch is found - and is expected to to be a non-zero integer.
1399+
is the line number where the branch is found - and is expected to be a non-zero integer.
14001400
.br
14011401
.I <block>
14021402
and
@@ -1412,9 +1412,9 @@ is a string which serves to uniquely identify a particular edge. For some langu
14121412
.I <branch>
14131413
is an ordered integer index related to expression tree traversal order of the associated conditional. For others, it may be a meaningful string - see below.
14141414
.I <branch>
1415-
appears in the 'tooltip' popup of the asognciated branch in the
1415+
appears in the 'tooltip' popup of the associated branch in the
14161416
.B genhtml
1417-
output - so human-readable values are helpful to users who are trying to understand coveage results.
1417+
output - so human-readable values are helpful to users who are trying to understand coverage results.
14181418
.br
14191419
.I <taken>
14201420
is either '-' if the corresponding expression was never evaluated (e.g., the basic block containing the branch was never executed) or
@@ -1424,7 +1424,7 @@ a number indicating how often that branch was taken.
14241424
is 'e' (single character) if this is a branch related to exception handling - and is not present if the branch is not related to exceptions.
14251425
Exception branch identification requires compiler support; note that gcc versions older than 9 do not differentiate exception branches. Geninfo will be able to identify exception branches only if your toolchain version is new enough to support the feature.
14261426

1427-
The following is an example branch records whose
1427+
The following are example branch records whose
14281428
.I <branch>
14291429
expression values are human-readable strings.
14301430

@@ -1443,7 +1443,7 @@ In this case, the corresponding code from line 10 is very likely similar to:
14431443
}
14441444
.br
14451445
.RE
1446-
such that associated testcase entered the block ('enable' evaluated to 'true').
1446+
such that the associated testcase entered the block ('enable' evaluated to 'true').
14471447

14481448
Arbitrarily complicated branch expressions are supported - including branch expressions which contain commas (e.g., in an expression containing a function call).
14491449

0 commit comments

Comments
 (0)