From 94cde8a893720fe0519e2d5724bb213509de8771 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 24 Jul 2026 18:50:31 -0400 Subject: [PATCH] docs: simplify titles a bit Signed-off-by: Henry Schreiner --- docs/guides/coverage.md | 2 +- docs/guides/docs.md | 2 +- docs/guides/pytest.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/coverage.md b/docs/guides/coverage.md index 6a0a4c73..12d84f3e 100644 --- a/docs/guides/coverage.md +++ b/docs/guides/coverage.md @@ -1,4 +1,4 @@ -# Code Coverage +# Coverage The "Code coverage" value of a codebase indicates how much of the production/development code is covered by the running unit tests. Maintainers diff --git a/docs/guides/docs.md b/docs/guides/docs.md index 0ac9746e..e7c785b2 100644 --- a/docs/guides/docs.md +++ b/docs/guides/docs.md @@ -1,4 +1,4 @@ -# Writing documentation +# Documentation Documentation used to require learning reStructuredText (sometimes referred to as reST / rST), but today we have great choices for documentation in markdown, diff --git a/docs/guides/pytest.md b/docs/guides/pytest.md index b08ea785..096cb1a6 100644 --- a/docs/guides/pytest.md +++ b/docs/guides/pytest.md @@ -1,4 +1,4 @@ -# Testing with pytest +# Testing Tests are crucial to writing reliable software. A good test suite allows you to: