Skip to content

Commit 31f502c

Browse files
authored
Merge pull request #122 from gtardif/fix_missing_brace
Add missing brace in code sample
2 parents 4a79483 + bb222e6 commit 31f502c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/dev/api/overview.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ JavaScript API libraries are available (with Typescript support) in order to get
1515
import { createDockerDesktopClient } from '@docker/extension-api-client';
1616

1717
export function App() {
18-
//obtain Docker Desktop client
18+
// obtain Docker Desktop client
1919
const ddClient = createDockerDesktopClient();
20+
// use ddClient to perform extension actions
21+
}
2022
```
2123

2224
The `ddClient` object gives access to various APIs, organized in different categories:

0 commit comments

Comments
 (0)