From 211062b32d9eb4c9ac88b8655ae9891aabd655bb Mon Sep 17 00:00:00 2001 From: drewmarshburn <40701908+drewmarshburn@users.noreply.github.com> Date: Mon, 14 Oct 2019 08:11:51 -0400 Subject: [PATCH] Edit grammar prop validation Just giving subject/verb agreement. --- src/v2/guide/components-props.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/guide/components-props.md b/src/v2/guide/components-props.md index d4ccbc1b67..ec06468a05 100644 --- a/src/v2/guide/components-props.md +++ b/src/v2/guide/components-props.md @@ -183,7 +183,7 @@ There are usually two cases where it's tempting to mutate a prop: ## Prop Validation -Components can specify requirements for its props, such as the types you've already seen. If a requirement isn't met, Vue will warn you in the browser's JavaScript console. This is especially useful when developing a component that's intended to be used by others. +Components can specify requirements for their props, such as the types you've already seen. If a requirement isn't met, Vue will warn you in the browser's JavaScript console. This is especially useful when developing a component that's intended to be used by others. To specify prop validations, you can provide an object with validation requirements to the value of `props`, instead of an array of strings. For example: