diff --git a/src/guide/migration/custom-directives.md b/src/guide/migration/custom-directives.md index bcd199302c..4bdaab2e01 100644 --- a/src/guide/migration/custom-directives.md +++ b/src/guide/migration/custom-directives.md @@ -27,7 +27,7 @@ In Vue 2, custom directives were created by using the hooks listed below to targ Here’s an example of this: ```html -
Highlight this text bright yellow
+Highlight this text bright yellow
``` ```js @@ -68,7 +68,7 @@ const MyDirective = { The resulting API could be used like this, mirroring the example from earlier: ```html -Highlight this text bright yellow
+Highlight this text bright yellow
``` ```js