From 08348369d8e0514aac75b9a24729f8bffc9cf187 Mon Sep 17 00:00:00 2001 From: Matt Wiens Date: Fri, 20 Jul 2018 17:54:50 -0700 Subject: [PATCH] Fix a badly formatted title in docs 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 a6ecc75570..54374aaa8d 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.