diff --git a/docs/sdk/examples.mdx b/docs/sdk/examples.mdx
index 2cacd6957..f97791a76 100644
--- a/docs/sdk/examples.mdx
+++ b/docs/sdk/examples.mdx
@@ -36,24 +36,24 @@ This example upgrades the given release, with the given chart, version and value
### Uninstall Action
-This example uninstalls the given release
+This example uninstalls the given release:
{UninstallExampleGo}
### List Action
-This example lists all released charts (in the currently configured namespace)
+This example lists all released charts (in the currently configured namespace):
{ListExampleGo}
### Pull Action
-This example pulls a chart from an OCI repository
+This example pulls a chart from an OCI repository:
{PullExampleGo}
## Driver
-The driver here shows the necessary auxiliary functions needed for the Helm SDK actions to function. And shows the above examples in action, to pull, install, update, and uninstall the 'podinfo' chart from an OCI repository.
+The driver here shows the necessary auxiliary functions needed for the Helm SDK actions to function. And shows the above examples in action, to pull, install, update, and uninstall the 'podinfo' chart from an OCI repository:
{MainExampleGo}