Skip to content

Commit fd7dbd8

Browse files
committed
@link -> @see
1 parent 94b04f2 commit fd7dbd8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

types/index.d.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,30 +40,30 @@ export interface RenderOptions<
4040
* For example: If you are unit testing a `<tbody>` element, it cannot be a child of a div. In this case, you can
4141
* specify a table as the render container.
4242
*
43-
* @link https://testing-library.com/docs/react-testing-library/api/#container
43+
* @see https://testing-library.com/docs/react-testing-library/api/#container
4444
*/
4545
container?: Container
4646
/** Defaults to the container if the container is specified. Otherwise `document.body` is used for the default. This is used as
4747
* the base element for the queries as well as what is printed when you use `debug()`.
4848
*
49-
* @link https://testing-library.com/docs/react-testing-library/api/#baseelement
49+
* @see https://testing-library.com/docs/react-testing-library/api/#baseelement
5050
*/
5151
baseElement?: Element
5252
/** If `hydrate` is set to `true`, then it will render with `ReactDOM.hydrate`. This may be useful if you are using server-side
5353
* rendering and use ReactDOM.hydrate to mount your components.
5454
*
55-
* @link https://testing-library.com/docs/react-testing-library/api/#hydrate)
55+
* @see https://testing-library.com/docs/react-testing-library/api/#hydrate)
5656
*/
5757
hydrate?: boolean
5858
/** Queries to bind. Overrides the default set from DOM Testing Library unless merged.
5959
*
60-
* @link https://testing-library.com/docs/react-testing-library/api/#queries
60+
* @see https://testing-library.com/docs/react-testing-library/api/#queries
6161
*/
6262
queries?: Q
6363
/** Pass a React Component as the wrapper option to have it rendered around the inner element. This is most useful for creating
6464
* reusable custom render functions for common data providers. See setup for examples.
6565
*
66-
* @link https://testing-library.com/docs/react-testing-library/api/#wrapper
66+
* @see https://testing-library.com/docs/react-testing-library/api/#wrapper
6767
*/
6868
wrapper?: React.ComponentType
6969
}

0 commit comments

Comments
 (0)