Skip to content

Commit

Permalink
Close code blocks in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jadnco committed Dec 29, 2015
1 parent aec6b8f commit 464e0d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/api/ReactWrapper/instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ NOTE: can only be called on a wrapper instance that is also the root instance.
const wrapper = mount(<MyComponent />);
const inst = wrapper.instance();
expect(inst).to.be.instanceOf(MyComponent);
``
```
2 changes: 1 addition & 1 deletion docs/api/ShallowWrapper/instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ NOTE: can only be called on a wrapper instance that is also the root instance.
const wrapper = shallow(<MyComponent />);
const inst = wrapper.instance();
expect(inst).to.be.instanceOf(MyComponent);
``
```
2 changes: 1 addition & 1 deletion docs/api/ShallowWrapper/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ const wrapper = shallow(<ImpureRender />);
expect(wrapper.text()).to.equal("0");
wrapper.update();
expect(wrapper.text()).to.equal("1");
``
```

0 comments on commit 464e0d0

Please sign in to comment.