1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2026-05-22 10:15:16 +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
+1 -1
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}
```