From 0e562e740937964c2bb96f3c3f4b668651fc40ed Mon Sep 17 00:00:00 2001 From: Samuel Roberts <sam.roberts@geant.org> Date: Tue, 7 May 2024 13:08:19 +0100 Subject: [PATCH] fix a formatting typo in protocol docs --- docs/source/protocol.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/protocol.rst b/docs/source/protocol.rst index 6a6366f7..46a321ff 100644 --- a/docs/source/protocol.rst +++ b/docs/source/protocol.rst @@ -7,11 +7,11 @@ This module implements a Flask-based webservice which communicates with clients over HTTP. Responses to valid requests are returned as JSON messages. The server will therefore return an error unless -`application/json` is in the `Accept` request header field. +``application/json`` is in the ``Accept`` request header field. HTTP communication and JSON grammar details are beyond the scope of this document. -Please refer to [RFC 2616](https://tools.ietf.org/html/rfc2616) +Please refer to `RFC 2616 <https://tools.ietf.org/html/rfc2616>`_ and www.json.org for more details. .. contents:: :local: -- GitLab