Merge pull request #16501 from backstage/blam/fix-ms2

chore: make valid mdx when transpiling
This commit is contained in:
Ben Lambert
2023-02-21 15:32:31 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
@@ -100,7 +100,7 @@ export class TestApiRegistry implements ApiHolder {
* [identityApiRef, mockIdentityApi as unknown as IdentityApi]
* ])}
* >
* {...}
* // ...
* </ApiProvider>
* )
* ```
@@ -110,7 +110,7 @@ export class TestApiRegistry implements ApiHolder {
* ```tsx
* renderInTestApp(
* <TestApiProvider apis={[[identityApiRef, mockIdentityApi]]}>
* {...}
* // ...
* </TestApiProvider>
* )
* ```
@@ -19,7 +19,7 @@ import { getSemverTagParts } from './getSemverTagParts';
import { Project } from '../../contexts/ProjectContext';
/**
* Tag parts are the individual parts of a version, e.g. <major>.<minor>.<patch>
* Tag parts are the individual parts of a version, e.g. [major].[minor].[patch]
* are the parts of a semantic version
*
* @public