Fix "lines" and "functions" in coverage threshold guide (#12217)

This commit is contained in:
Jake Boone
2024-06-27 16:00:13 -07:00
committed by GitHub
parent d105b048b1
commit eff2ea6271

View File

@@ -52,7 +52,7 @@ Different thresholds can be set for line-level and function-level coverage.
```toml
[test]
# to set different thresholds for lines and functions
coverageThreshold = { line = 0.5, function = 0.7 }
coverageThreshold = { lines = 0.5, functions = 0.7 }
```
---