From 82c1abff5f16436e1304dba792251b5e32335325 Mon Sep 17 00:00:00 2001 From: Seth Lopez Date: Sun, 2 Aug 2015 18:59:50 -0400 Subject: [PATCH] Fix: small typo. --- source/guide/custom-directive.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/guide/custom-directive.md b/source/guide/custom-directive.md index edb150cc58..326e2ab238 100644 --- a/source/guide/custom-directive.md +++ b/source/guide/custom-directive.md @@ -255,6 +255,6 @@ We can write: Element directives cannot accept arguments or expressions, but it can read the element's attributes to determine its behavior. -A big difference from normals directives is that element directives are **terminal**, which means once Vue encounters an element directive, it will leave that element and all its children alone - only the element directive itself will be able to manipulate that element and its children. +A big difference from normal directives is that element directives are **terminal**, which means once Vue encounters an element directive, it will leave that element and all its children alone - only the element directive itself will be able to manipulate that element and its children. -Next, we'll see how to [write a custom filter](/guide/custom-filter.html). \ No newline at end of file +Next, we'll see how to [write a custom filter](/guide/custom-filter.html).