Skip to content

Commit

Permalink
docs(api): fix missing chars
Browse files Browse the repository at this point in the history
  • Loading branch information
w2xi authored and cexbrayat committed Apr 6, 2024
1 parent 8e499e7 commit 10237ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ test('shallow', () => {
const wrapper = mount(Component, { shallow: true })

expect(wrapper.html()).toEqual(
`<a-component-stub></a-component-stub><another-component></another-component>`
`<a-component-stub></a-component-stub><another-component-stub></another-component-stub>`
)
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/fr/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ test('shallow', () => {
const wrapper = mount(Component, { shallow: true });
expect(wrapper.html()).toEqual(
`<a-component-stub></a-component-stub><another-component></another-component>`,
`<a-component-stub></a-component-stub><another-component-stub></another-component-stub>`,
);
});
```
Expand Down

0 comments on commit 10237ed

Please sign in to comment.