Skip to content

Commit ac56f83

Browse files
docs: fix bad references to find and get pages
closes vuejs#1420
1 parent ff54d68 commit ac56f83

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/api/wrapper/find.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ const fooRef = wrapper.find({ ref: 'foo' })
3232
expect(fooRef.is(Foo)).toBe(true)
3333
```
3434

35-
See also: [get](../get.md).
35+
See also: [get](./get.md).

docs/api/wrapper/get.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## get
22

3-
Works just like [find](../find.md) but will throw an error if nothing matching
3+
Works just like [find](./find.md) but will throw an error if nothing matching
44
the given selector is found. You should use `find` when searching for an element
55
that may not exist. You should use this method when getting an element that should
66
exist and it will provide a nice error message if that is not the case.

0 commit comments

Comments
 (0)