From 9e89b438fe3c9bf47cf8ab5126f0d0938221851a Mon Sep 17 00:00:00 2001 From: Bryan Petty Date: Wed, 5 Aug 2009 17:38:25 +0000 Subject: [PATCH] Fixed up the short description of wxHashMap::find(). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61617 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/hashmap.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/wx/hashmap.h b/interface/wx/hashmap.h index 4b4dda0225..594d77caa0 100644 --- a/interface/wx/hashmap.h +++ b/interface/wx/hashmap.h @@ -228,7 +228,8 @@ public: /** If an element with the given key is present, the functions returns an iterator pointing at that element, otherwise an invalid iterator is - returned; i.e. + returned. + @code hashmap.find( non_existent_key ) == hashmap.end() @endcode