diff --git a/packages/test-utils/src/testUtils/TestApiProvider.tsx b/packages/test-utils/src/testUtils/TestApiProvider.tsx
index 35fa302415..f38433ace9 100644
--- a/packages/test-utils/src/testUtils/TestApiProvider.tsx
+++ b/packages/test-utils/src/testUtils/TestApiProvider.tsx
@@ -100,7 +100,7 @@ export class TestApiRegistry implements ApiHolder {
* [identityApiRef, mockIdentityApi as unknown as IdentityApi]
* ])}
* >
- * {...}
+ * // ...
*
* )
* ```
@@ -110,7 +110,7 @@ export class TestApiRegistry implements ApiHolder {
* ```tsx
* renderInTestApp(
*
- * {...}
+ * // ...
*
* )
* ```
diff --git a/plugins/git-release-manager/src/helpers/tagParts/getTagParts.ts b/plugins/git-release-manager/src/helpers/tagParts/getTagParts.ts
index ba8412b2b4..3c500eb923 100644
--- a/plugins/git-release-manager/src/helpers/tagParts/getTagParts.ts
+++ b/plugins/git-release-manager/src/helpers/tagParts/getTagParts.ts
@@ -19,7 +19,7 @@ import { getSemverTagParts } from './getSemverTagParts';
import { Project } from '../../contexts/ProjectContext';
/**
- * Tag parts are the individual parts of a version, e.g. ..
+ * Tag parts are the individual parts of a version, e.g. [major].[minor].[patch]
* are the parts of a semantic version
*
* @public