From a5d61607ef734bf334f4b54dbfd5a6f96c493938 Mon Sep 17 00:00:00 2001 From: Curt Grimes Date: Sat, 11 May 2024 17:11:01 -0500 Subject: [PATCH] fix: remove comma splice Fix comma splice. This sentence should be two. --- src/guide/reusability/custom-directives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/reusability/custom-directives.md b/src/guide/reusability/custom-directives.md index 536fff323a..ea3e5abe7f 100644 --- a/src/guide/reusability/custom-directives.md +++ b/src/guide/reusability/custom-directives.md @@ -211,7 +211,7 @@ app.directive('demo', (el, binding) => { ## Usage on Components {#usage-on-components} :::warning Not recommended -Using custom directives on components is not recommended, unexpected behaviour may occur when a component has multiple root nodes. +Using custom directives on components is not recommended. Unexpected behaviour may occur when a component has multiple root nodes. :::