X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColHashMap.h;h=d7b99c2949e677c169a27431fd355238a9e7de8e;hb=07a771d39ebf4c7f26a04aeb3e06f9d7eb1c6dc2;hp=9ce0f3ae6ba8de4468d33b5910aaab32263c88e0;hpb=bcf8611628bb06fd14f2fe8e019ab52334953ae4;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColHashMap.h b/inc/FBaseColHashMap.h index 9ce0f3a..d7b99c2 100644 --- a/inc/FBaseColHashMap.h +++ b/inc/FBaseColHashMap.h @@ -1,5 +1,4 @@ // -// Open Service Platform // Copyright (c) 2012 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); @@ -85,8 +84,7 @@ class _HashMapEntry; * * // Deallocates all objects * // Because the destructor calls RemoveAll() internally, you do not need to call RemoveAll() to destroy all elements at the end. - * map.RemoveAll(); - * + * // map.RemoveAll(); * } * @endcode */ @@ -107,7 +105,7 @@ public: * @since 2.0 * * @param[in] deleter The function pointer to type of the element deleter - * @remarks To create an owing collection, set the element deleter value as @c SingleObjectDeleter. This gives the collection the ownership of elements and the collection will destroy elements. @n + * @remarks To create an owning collection, set the element deleter value as @c SingleObjectDeleter. This gives the collection the ownership of elements and the collection will destroy elements. @n * On the other hand, to create a non-owning collection, you do not need to set the element deleter value, as @c NoOpDeleter is the default element deleter. * It means that you do not transfer the ownership of elements to the collection. * @see NoOpDeleter() @@ -432,7 +430,7 @@ private: HashMap& operator =(const HashMap& map); /** - * Copies all the pairs from the specified @c map to this map + * Copies all the pairs from the specified @c map to this map. * * @return An error code * @param[in] map The map to copy