BUG: Fixes #2808 fixed case type in documentation

This commit is contained in:
Kirk Mayo 2014-01-31 14:55:53 +13:00
parent 587c489d0f
commit 7a9a968d1b

View File

@ -290,7 +290,7 @@ start with S, who has logged in since 1/1/2011.
:::php
$members = Member::get()->filter(array(
'FirstName:StartsWith:Not' => 'S'
'FirstName:StartsWith:not' => 'S'
'LastVisited:GreaterThan' => '2011-01-01'
));