From f6fa2f5737d8810a7fc54650aa353f581d479a2a Mon Sep 17 00:00:00 2001 From: christor Date: Tue, 3 May 2016 11:23:06 -0400 Subject: [PATCH] Update readme.md feat(typeahead): Clarify documentation on the type of event that will cause should-select to be called --- src/typeahead/docs/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typeahead/docs/readme.md b/src/typeahead/docs/readme.md index a56623f570..5ea5c36fd3 100644 --- a/src/typeahead/docs/readme.md +++ b/src/typeahead/docs/readme.md @@ -80,7 +80,7 @@ This directive works with promises, meaning you can retrieve matches using the ` * `typeahead-should-select($event)` $ _(Default: `null`)_ - - A callback executed when an event occurs that might trigger a selection. Selection will only occur if this function returns true. + A callback executed when a `keyup` event that might trigger a selection occurs. Selection will only occur if this function returns true. * `typeahead-on-select($item, $model, $label, $event)` $