From 5cdee9e45170808bf863a3e6ccae9b4b6fee1e6f Mon Sep 17 00:00:00 2001 From: Friendliness <62225953+Friendliness@users.noreply.github.com> Date: Tue, 30 Dec 2025 14:17:42 +0100 Subject: [PATCH] Fix markdown headers and code block formatting Updated markdown formatting for Async and Sync sections. Signed-off-by: Friendliness <62225953+Friendliness@users.noreply.github.com> --- docs/get-requests-and-caching.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/get-requests-and-caching.md b/docs/get-requests-and-caching.md index 10581d7..b12f044 100644 --- a/docs/get-requests-and-caching.md +++ b/docs/get-requests-and-caching.md @@ -21,17 +21,17 @@ Services will automatically support GET requests using this option. It is still necessary to opt-in to HTTP GET on your client, as well. Generated clients include a `use_get` parameter for methods that are marked with `NO_SIDE_EFFECTS`. -=== "Async" +### Async - ```python - response = await client.say(SayRequest(sentence="Hello"), use_get=True) - ``` +```python +response = await client.say(SayRequest(sentence="Hello"), use_get=True) +``` -=== "Sync" +### Sync - ```python - response = client.say(SayRequest(sentence="Hello"), use_get=True) - ``` + ```python + response = client.say(SayRequest(sentence="Hello"), use_get=True) + ``` For other clients, see their respective documentation pages: