[2.2.1] Apply reviewed header file (Base to Collection)
[platform/framework/native/appfw.git] / inc / FBaseColTypes.h
index 6df2832..24607d7 100644 (file)
@@ -19,7 +19,7 @@
  * @brief              This is the header file for the element deleter.
  *
  * This header file contains the declarations of the element deleter.
- * Depending on the element deleter, collection decides whether to remove the object or not.
+ * Depending on the element deleter, the collection decides whether to remove the object or not.
  */
 #ifndef _FBASE_COL_TYPES_H_
 #define _FBASE_COL_TYPES_H_
@@ -32,29 +32,29 @@ namespace Tizen { namespace Base { namespace Collection
 typedef void (*DeleterFunctionType)(Object* pObj);
 
 /**
- * This function does not remove the object.
+ * Does not remove the object.
  *
  * @since 2.0
  *
- * @param[in]  pObj            The pointer to the object to remove
+ * @param[in]  pObj            A pointer to the object to remove
  */
 _OSP_EXPORT_ void NoOpDeleter(Object* pObj);
 
 /**
- * This function removes the single object.
+ * Removes the single object.
  *
  * @since 2.0
  *
- * @param[in]  pObj            The pointer to the object to remove
+ * @param[in]  pObj            A pointer to the object to remove
  */
 _OSP_EXPORT_ void SingleObjectDeleter(Object* pObj);
 
 /**
- * This function removes the array object.
+ * Removes the array object.
  *
  * @since 2.0
  *
- * @param[in]  pObj            The pointer to the object to remove
+ * @param[in]  pObj            A pointer to the object to remove
  */
 _OSP_EXPORT_ void ArrayDeleter(Object* pObj);