1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-05-31 22:49:46 +02:00

Fix typo.

This commit is contained in:
David Fetter 2019-11-19 10:32:18 -05:00 committed by David Steele
parent 74317f0ab6
commit 20162ed3fe
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ If the majority of functions in a module or object are variadic it is best to pr
#### Uncoverable Code
The `uncoverable` keyword marks code that can never be covered. For instance, a function that never returns because it always throws a error. Uncoverable code should be rare to non-existent outside the common libraries and test code.
The `uncoverable` keyword marks code that can never be covered. For instance, a function that never returns because it always throws an error. Uncoverable code should be rare to non-existent outside the common libraries and test code.
```c
} // {uncoverable - function throws error so never returns}
```

View File

@ -290,7 +290,7 @@ storagePathCreateP(storageLocal(), "/tmp/pgbackrest", .errorOnExists = true, .mo
<section id="uncoverable">
<title>Uncoverable Code</title>
<p>The <id>uncoverable</id> keyword marks code that can never be covered. For instance, a function that never returns because it always throws a error. Uncoverable code should be rare to non-existent outside the common libraries and test code.</p>
<p>The <id>uncoverable</id> keyword marks code that can never be covered. For instance, a function that never returns because it always throws an error. Uncoverable code should be rare to non-existent outside the common libraries and test code.</p>
<code-block type="c">
} // {uncoverable - function throws error so never returns}