From 59ceac398003d8845d32f4a822e6f32d21af0a6d Mon Sep 17 00:00:00 2001 From: Bill Criswell Date: Tue, 13 Oct 2015 14:19:27 -0400 Subject: [PATCH] fixed link to debounce filter --- source/guide/forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide/forms.md b/source/guide/forms.md index f4ec42849d..de6c6ca922 100644 --- a/source/guide/forms.md +++ b/source/guide/forms.md @@ -328,4 +328,4 @@ new Vue({ {% endraw %} -Note that the `debounce` param does not debounce the user's input events: it debounces the "write" operation to the underlying data. Therefore you should use `vm.$watch()` to react to data changes when using `debounce`. For debouncing real DOM events you should use the [debounce filter](/api/filters.html#debounce). +Note that the `debounce` param does not debounce the user's input events: it debounces the "write" operation to the underlying data. Therefore you should use `vm.$watch()` to react to data changes when using `debounce`. For debouncing real DOM events you should use the [debounce filter](/api/#debounce).