From f1433fc1afe84e31bac33abef178e9ad34c7ad5c Mon Sep 17 00:00:00 2001 From: Matt Wiens Date: Tue, 8 Jan 2019 04:07:00 -0800 Subject: [PATCH] Fix a badly formatted title in docs (#6089) While having code blocks in a title is valid Markdown, MkDocs does not render it as expected. This removes a code block placed in a title. --- docs/api-guide/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/testing.md b/docs/api-guide/testing.md index 9134bd08e48..5ca01b4e7e1 100644 --- a/docs/api-guide/testing.md +++ b/docs/api-guide/testing.md @@ -209,7 +209,7 @@ directly. Note that the requests client requires you to pass fully qualified URLs. -## `RequestsClient` and working with the database +## RequestsClient and working with the database The `RequestsClient` class is useful if you want to write tests that solely interact with the service interface. This is a little stricter than using the standard Django test client, as it means that all interactions should be via the API.