Skip to content

Commit fedf20b

Browse files
committed
Fix @Link to @link
1 parent df43089 commit fedf20b

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

api_docs/usage_collection.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"lineNumber": 23
5151
},
5252
"tags": [
53-
"Link",
5453
"constructor"
5554
],
5655
"returnComment": [],
@@ -63,7 +62,7 @@
6362
"type": "Interface",
6463
"label": "TrackApplicationViewProps",
6564
"description": [
66-
"\nProps to provide to the {@Link TrackApplicationView} component."
65+
"\nProps to provide to the {@link TrackApplicationView} component."
6766
],
6867
"tags": [
6968
"public"

src/plugins/usage_collection/public/components/track_application_view/track_application_view.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const ApplicationUsageContext = createContext<IApplicationUsageTracker |
1717

1818
/**
1919
* React component to track the number of clicks and minutes on screen of the children components.
20-
* @param props {@Link TrackApplicationViewProps}
20+
* @param props {@link TrackApplicationViewProps}
2121
* @constructor
2222
*/
2323
export const TrackApplicationView: FC<TrackApplicationViewProps> = (props) => {

src/plugins/usage_collection/public/components/track_application_view/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import { ReactNode } from 'react';
1010

1111
/**
12-
* Props to provide to the {@Link TrackApplicationView} component.
12+
* Props to provide to the {@link TrackApplicationView} component.
1313
* @public
1414
*/
1515
export interface TrackApplicationViewProps {

0 commit comments

Comments
 (0)