Code Cleanup

- Clarified autoComplete special case comment.
This commit is contained in:
Paul Beckingham 2009-12-06 11:40:19 -05:00
parent 5f353f800d
commit 3003cdaf08

View file

@ -244,6 +244,8 @@ int autoComplete (
{
foreach (item, list)
{
// An exact match is a special case. Assume there is only one exact match
// and return immediately.
if (partial == *item)
{
matches.clear ();