mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
doc: Fix typo in 'coverage-data->lcov' example.
* doc/ref/api-coverage.texi (Code Coverage): Close PORT, not FILE, in the example. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b16dbb14bc
commit
78c7772eb7
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ Here's an example use:
|
||||||
(lambda (data result)
|
(lambda (data result)
|
||||||
(let ((port (open-output-file "lcov.info")))
|
(let ((port (open-output-file "lcov.info")))
|
||||||
(coverage-data->lcov data port)
|
(coverage-data->lcov data port)
|
||||||
(close file))))
|
(close port))))
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
In addition, the module provides low-level procedures that would make it
|
In addition, the module provides low-level procedures that would make it
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue