Fix api reference for appcore widget
[platform/core/appfw/appcore-widget.git] / include / widget_app.h
index 9e309d2..6b4d1d9 100755 (executable)
@@ -80,7 +80,7 @@ typedef int (*widget_instance_create_cb)(widget_context_h context, bundle *conte
  *          In this callback, you can finalize resources for this instance.
  *          If reason is not #WIDGET_APP_DESTROY_TYPE_TEMPORARY, it should store the current status by using incoming bundle.
  * @since_tizen 2.3.1
- * @remark Note that the parameter 'content' is used to save the status of the widget instance.
+ * @remarks Note that the parameter 'content' is used to save the status of the widget instance.
  *         As a input parameter, content contains the saved status of the widget instance.
  *         You can fill the content parameter with the current status in this callback,
  *         then the framework will save the content by receiving it as a output parameter.
@@ -290,7 +290,7 @@ int widget_app_foreach_context(widget_context_cb callback, void *data);
  * @brief Adds the system event handler.
  * @since_tizen 2.3.1
  * @param[out] event_handler The event handler
- * @param[in] event_type The system event type. APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported
+ * @param[in] event_type The system event type. #APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported
  * @param[in] callback The callback function
  * @param[in] user_data The user data to be passed to the callback function
  * @return #WIDGET_ERROR_NONE on success,
@@ -302,7 +302,7 @@ int widget_app_foreach_context(widget_context_cb callback, void *data);
  * @retval #WIDGET_ERROR_FAULT Unrecoverable error
  * @see app_event_type_e
  * @see app_event_cb()
- * @see watch_app_remove_event_handler()
+ * @see widget_app_remove_event_handler()
  */
 int widget_app_add_event_handler(app_event_handler_h *event_handler, app_event_type_e event_type,
                app_event_cb callback, void *user_data);
@@ -317,7 +317,7 @@ int widget_app_add_event_handler(app_event_handler_h *event_handler, app_event_t
  * @retval #WIDGET_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #WIDGET_ERROR_NOT_SUPPORTED Not supported
  * @retval #WIDGET_ERROR_FAULT Unrecoverable error
- * @see watch_app_add_event_handler()
+ * @see widget_app_add_event_handler()
  */
 int widget_app_remove_event_handler(app_event_handler_h event_handler);
 
@@ -326,10 +326,10 @@ int widget_app_remove_event_handler(app_event_handler_h event_handler);
  * @brief Gets a widget instance id.
  * @since_tizen 2.3.1
  * @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- * @remark You must not free returned widget instance id
- * @remark The returned widget instance id is volatile. If the device reboots or the widget's process restarts, it will be changed.\n
+ * @remarks You must not free returned widget instance id
+ * @remarks The returned widget instance id is volatile. If the device reboots or the widget's process restarts, it will be changed.\n
  *      So, you should not assume this value is a persistent one.
- * @remark widget_service_trigger_update(), widget_service_change_period(), widget_service_get_content_of_widget_instance()\n
+ * @remarks widget_service_trigger_update(), widget_service_change_period(), widget_service_get_content_of_widget_instance()\n
  *      can be called with returned instance id.
  * @param[in] context The context for widget instance
  * @return widget instance id on success,