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 } ``` ---