From 8f980890b51b899eac5d6747a2c0fb2f30c4abaf Mon Sep 17 00:00:00 2001 From: blam Date: Tue, 21 Feb 2023 15:26:17 +0100 Subject: [PATCH] chore: make valid mdx when transpiling Signed-off-by: blam --- packages/test-utils/src/testUtils/TestApiProvider.tsx | 4 ++-- .../git-release-manager/src/helpers/tagParts/getTagParts.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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