[2.2.1] Apply reviewed header file (Base to Collection)
[platform/framework/native/appfw.git] / inc / FBaseColIComparer.h
index 689b1f2..a210d4e 100644 (file)
@@ -30,11 +30,11 @@ namespace Tizen { namespace Base { namespace Collection
 {
 /**
  * @interface  IComparer
- * @brief              This interface allows a derived class to compare 2 objects of the same type.
+ * @brief              This interface allows a derived class to compare two objects of the same type.
  *
  * @since 2.0
  *
- * The %IComparer interface allows a derived class to compare 2 objects of the same type.
+ * The %IComparer interface allows a derived class to compare two objects of the same type.
  */
 class _OSP_EXPORT_ IComparer
 {
@@ -56,15 +56,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 Tizen::Base::Object& obj1, const Tizen::Base::Object& obj2, int& cmp) const = 0;