From faa2cd18f1e234b349529821ffbc48edce2e1275 Mon Sep 17 00:00:00 2001 From: Ivan Yan Date: Wed, 26 Aug 2015 18:37:55 +0800 Subject: [PATCH] fix typo --- source/api/filters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/api/filters.md b/source/api/filters.md index 3a066e770f..235865d980 100644 --- a/source/api/filters.md +++ b/source/api/filters.md @@ -117,7 +117,7 @@ Optionally, you can narrow down which specific property to search in with the op ``` -Now the item will only match if the value of `searchText` is found in its `name` property. Note here we need to quote `name` to indicate its a literal string argument. With this limitation, `searchText` with value `'555'` will no longer match this item, but `'Jack'` will. +Now the item will only match if the value of `searchText` is found in its `name` property. Note here we need to quote `name` to indicate it's a literal string argument. With this limitation, `searchText` with value `'555'` will no longer match this item, but `'Jack'` will. > New in 0.12.11