diff --git a/examples/docs/en-US/popover.md b/examples/docs/en-US/popover.md
index 42ff193f6..ca096281f 100644
--- a/examples/docs/en-US/popover.md
+++ b/examples/docs/en-US/popover.md
@@ -212,6 +212,7 @@ Of course, you can nest other operations. It's more light-weight than using a di
| content | popover content, can be replaced with a default `slot` | string | — | — |
| width | popover width | string, number | — | Min width 150px |
| placement | popover placement | string | top/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-end | bottom |
+| disabled | whether Popover is disabled | boolean | — | false |
| value(v-model) | whether popover is visible | Boolean | — | false |
| offset | popover offset | number | — | 0 |
| transition | popover transition animation | string | — | fade-in-linear |
diff --git a/examples/docs/en-US/tooltip.md b/examples/docs/en-US/tooltip.md
index d1caf16bd..20665f863 100644
--- a/examples/docs/en-US/tooltip.md
+++ b/examples/docs/en-US/tooltip.md
@@ -113,12 +113,12 @@ Tooltip has 9 placements.
.item {
margin: 4px;
}
-
+
.left .el-tooltip__popper,
.right .el-tooltip__popper {
padding: 8px 10px;
}
-
+
.el-button {
width: 110px;
}
@@ -145,7 +145,7 @@ Tooltip has two themes: `dark` and `light`。
### More Content
-Display multiple lines of text and set their format.
+Display multiple lines of text and set their format.
:::demo Override attribute `content` of `el-tooltip` by adding a slot named `content`.
```html
@@ -170,7 +170,7 @@ In fact, Tooltip is an extension based on [Vue-popper](https://github.com/elemen
```html