diff --git a/docs/en/guides/dom-events.md b/docs/en/guides/dom-events.md index 36b2c7957..bf92955be 100644 --- a/docs/en/guides/dom-events.md +++ b/docs/en/guides/dom-events.md @@ -10,7 +10,7 @@ const wrapper = mount(MyButton) wrapper.trigger('click') ``` -You should be aware, that find returns a wrapper as well. Assuming `MyComponent` contains a button, the following code clicks the button. +You should be aware that the `find` method returns a `Wrapper` as well. Assuming `MyComponent` contains a button, the following code clicks the button. ```js const wrapper = mount(MyComponent) @@ -20,7 +20,7 @@ wrapper.find('button').trigger('click') ## Options -The trigger method takes an optional `options` object. The properties in the `options` object are added to the Event. +The `trigger` method takes an optional `options` object. The properties in the `options` object are added to the Event. You can run `preventDefault` on the event by passing `preventDefault: true` in `options`.