From eff2ea6271002d8fe81178d0ba7b5a23576fa1cf Mon Sep 17 00:00:00 2001 From: Jake Boone Date: Thu, 27 Jun 2024 16:00:13 -0700 Subject: [PATCH] Fix "lines" and "functions" in coverage threshold guide (#12217) --- docs/guides/test/coverage-threshold.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/test/coverage-threshold.md b/docs/guides/test/coverage-threshold.md index d0883df588..f18c607a0a 100644 --- a/docs/guides/test/coverage-threshold.md +++ b/docs/guides/test/coverage-threshold.md @@ -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 } ``` ---