X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColIComparerT.h;h=a2667ee096692ac19b5e8470c30a20cbf1517686;hb=60d143778a54ae4c638a08d8c7304b099f70434e;hp=f1c6f42f15e4bbc455e1c23dc63ae5414ba58102;hpb=3b569ff3e66a065cb5728bc19d1da493c66f7583;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColIComparerT.h b/inc/FBaseColIComparerT.h index f1c6f42..a2667ee 100644 --- a/inc/FBaseColIComparerT.h +++ b/inc/FBaseColIComparerT.h @@ -29,11 +29,11 @@ namespace Tizen { namespace Base { namespace Collection { /** * @interface IComparerT - * @brief This interface allows derived classes to compare 2 template-based objects of the same type. + * @brief This interface allows derived classes to compare two template-based objects of the same type. * * @since 2.0 * - * The %IComparerT interface allows derived classes to compare 2 template-based objects of the + * The %IComparerT interface allows derived classes to compare two template-based objects of the * same type. */ template< class Type > @@ -57,15 +57,15 @@ public: * @return An error code * @param[in] obj1 The first object to compare * @param[in] obj2 The second object to compare - * @param[out] cmp The result of comparison + * @param[out] cmp The result of the comparison * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG The specified object instances are not of the expected type. * @remarks The value of @c cmp can be: * * @code - * < 0 if the value of @c obj1 is less than the value of @c obj2 - * == 0 if the value of @c obj1 is equal to the value of @c obj2 - * > 0 if the value of @c obj1 is greater than the value of @c obj2 + * < 0 if the value of obj1 is less than the value of obj2 + * == 0 if the value of obj1 is equal to the value of obj2 + * > 0 if the value of obj1 is greater than the value of obj2 * @endcode */ virtual result Compare(const Type& obj1, const Type& obj2, int& cmp) const = 0;