From 8d2d5f960cf7e9c3a00d12e481694cb3b55e66ab Mon Sep 17 00:00:00 2001 From: Austin Ward Date: Tue, 23 Dec 2025 11:56:04 -0500 Subject: [PATCH 1/2] Fix typo in support information for Temporal Cloud --- docs/evaluate/temporal-cloud/support.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/evaluate/temporal-cloud/support.mdx b/docs/evaluate/temporal-cloud/support.mdx index 45945f207b..76dec98f83 100644 --- a/docs/evaluate/temporal-cloud/support.mdx +++ b/docs/evaluate/temporal-cloud/support.mdx @@ -22,7 +22,6 @@ Temporal Cloud includes the right level of technical support and guidance, servi Our team has extensive knowledge of Temporal, and a broad set of skills to help you succeed with any project. Temporal Cloud provides several levels of support, from assisting with for break/fix scenarios to issues and services to helping with onboarding, design/code reviews for your application, and pre-production optimizations and operational readiness. -note :::note From a5eaadc24dbf2649dd20f06a78825e0f9369e4ff Mon Sep 17 00:00:00 2001 From: Austin Ward Date: Tue, 23 Dec 2025 12:09:19 -0500 Subject: [PATCH 2/2] Typo in python sdk docs --- docs/develop/python/python-sdk-sync-vs-async.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/develop/python/python-sdk-sync-vs-async.mdx b/docs/develop/python/python-sdk-sync-vs-async.mdx index fdeaf5d4fa..21556b51b9 100644 --- a/docs/develop/python/python-sdk-sync-vs-async.mdx +++ b/docs/develop/python/python-sdk-sync-vs-async.mdx @@ -69,7 +69,7 @@ such as `aiohttp` or `httpx`. Otherwise, use a synchronous Activity. ## Python SDK Worker Execution Architecture -Python workers have following components for executing code: +Python workers have the following components for executing code: - Your event loop, which runs Tasks from async Activities **plus the rest of the Temporal Worker, such as communicating with the server**. - An executor for executing Activity Tasks from synchronous Activities. A thread pool executor is recommended.