From b3280b168c8220e7d4ff40a825fae994e54b9416 Mon Sep 17 00:00:00 2001 From: nkmryu <59592962+nkmrrrr@users.noreply.github.com> Date: Tue, 27 May 2025 16:12:33 +0900 Subject: [PATCH] Doc: correct typo in DockerDesktopClient entrypoint reference (#22701) ## Description Fix typo `DockerDesktopCLient` -> `DockerDesktopClient` ## Related issues or tickets ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review --- content/manuals/extensions/extensions-sdk/dev/api/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/extensions/extensions-sdk/dev/api/overview.md b/content/manuals/extensions/extensions-sdk/dev/api/overview.md index 730a786192..fe129ddb4a 100644 --- a/content/manuals/extensions/extensions-sdk/dev/api/overview.md +++ b/content/manuals/extensions/extensions-sdk/dev/api/overview.md @@ -14,7 +14,7 @@ and communicate with the Docker Desktop dashboard or the underlying system. JavaScript API libraries, with Typescript support, are available in order to get all the API definitions in to your extension code. -- [@docker/extension-api-client](https://www.npmjs.com/package/@docker/extension-api-client) gives access to the extension API entrypoint `DockerDesktopCLient`. +- [@docker/extension-api-client](https://www.npmjs.com/package/@docker/extension-api-client) gives access to the extension API entrypoint `DockerDesktopClient`. - [@docker/extension-api-client-types](https://www.npmjs.com/package/@docker/extension-api-client-types) can be added as a dev dependency in order to get types auto-completion in your IDE. ```Typescript