Fix api reference for data control 65/217665/1
authorSukHyung, Kang <shine.kang@samsung.com>
Wed, 13 Nov 2019 07:50:16 +0000 (16:50 +0900)
committerSukHyung, Kang <shine.kang@samsung.com>
Wed, 13 Nov 2019 07:50:16 +0000 (16:50 +0900)
Change-Id: I766b76a17b1235f3fd1243140ce4ac814e8ece48
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
include/data_control_map.h
include/data_control_sql.h
include/data_control_sql_cursor.h

index 9e35b2abfc3dc48e250dabf45591446860d1e776..54c59bfcdd57af2f09248517d0dcffb1ed51237f 100644 (file)
@@ -129,7 +129,7 @@ typedef struct {
  * @brief Creates a provider handle.
  * @since_tizen 2.3
  * @remarks @a provider should be destroyed with data_control_map_destroy().
- *          The following example demonstrates how to use the %data_control_map_create() method.
+ *          The following example demonstrates how to use the data_control_map_create() method.
  *
  * @code
  *
@@ -304,7 +304,7 @@ int data_control_map_unregister_response_cb(data_control_h provider);
  *            %http://tizen.org/privilege/appmanager.launch
  * @remarks If you want to use this function, you must add privileges.
  * @remarks If the length of value list associated with the @a key is larger than 20, this function only returns the first 20 values.
- * @remarks The following example demonstrates how to use the %data_control_map_get() method.
+ * @remarks The following example demonstrates how to use the data_control_map_get() method.
  *
  * @code
  *
@@ -394,7 +394,7 @@ int data_control_map_get_with_page(data_control_h provider, const char *key, int
  * @privilege %http://tizen.org/privilege/datasharing \n
  *            %http://tizen.org/privilege/appmanager.launch
  * @remarks If you want to use this function, you must add privileges.
- * @remarks The following example demonstrates how to use the %data_control_map_set() method.
+ * @remarks The following example demonstrates how to use the data_control_map_set() method.
  *
  * @code
  *
@@ -459,7 +459,7 @@ int data_control_map_set(data_control_h provider, const char *key, const char *o
  * @privilege %http://tizen.org/privilege/datasharing \n
  *            %http://tizen.org/privilege/appmanager.launch
  * @remarks If you want to use this function, you must add privileges.
- * @remarks The following example demonstrates how to use the %data_control_map_add() method.
+ * @remarks The following example demonstrates how to use the data_control_map_add() method.
  *
  * @code
  *
@@ -522,7 +522,7 @@ int data_control_map_add(data_control_h provider, const char *key, const char *v
  * @privilege %http://tizen.org/privilege/datasharing \n
  *            %http://tizen.org/privilege/appmanager.launch
  * @remarks If you want to use this function, you must add privileges.
- * @remarks The following example demonstrates how to use the %data_control_map_remove() method.
+ * @remarks The following example demonstrates how to use the data_control_map_remove() method.
  *
  * @code
  *
@@ -585,7 +585,7 @@ int data_control_map_remove(data_control_h provider, const char *key, const char
  * @privilege %http://tizen.org/privilege/datasharing \n
  *            %http://tizen.org/privilege/appmanager.launch
  * @remarks If you want to use this function, you must add privileges.
- * @remarks The following example demonstrates how to use the %data_control_map_add_bulk_data() method.
+ * @remarks The following example demonstrates how to use the data_control_map_add_bulk_data() method.
  *
  * @code
  *
index 5e70cea79669ee31d65ef65dc42fdd9ec71046ae..dd26d93d6aba5ccc6ead600fbacb6e33075cd97f 100644 (file)
@@ -123,7 +123,7 @@ typedef struct {
  * @since_tizen 2.3
  *
  * @remarks @a provider should be destroyed with data_control_sql_destroy().
- *          The following example demonstrates how to use the %data_control_sql_create() method:
+ *          The following example demonstrates how to use the data_control_sql_create() method:
  *
  * @code
  *
@@ -363,7 +363,7 @@ int data_control_sql_unregister_response_cb(data_control_h provider);
  *
  * @remarks If you want to use this function, you must add privileges.
  * @remarks If the value is a string, then the value must be wrapped in single quotes, else it does not need to be wrapped in single quotes.
- * @remarks The following example demonstrates how to use the %data_control_sql_delete() method:
+ * @remarks The following example demonstrates how to use the data_control_sql_delete() method:
  *
  * @code
  *
@@ -427,7 +427,7 @@ int data_control_sql_delete(data_control_h provider, const char *where, int *req
  *            %http://tizen.org/privilege/appmanager.launch
  *
  * @remarks If you want to use this function, you must add privileges.
- *          The following example demonstrates how to use the %data_control_sql_insert() method:
+ *          The following example demonstrates how to use the data_control_sql_insert() method:
  *
  * @code
  *
@@ -500,7 +500,7 @@ int data_control_sql_insert(data_control_h provider, const bundle *insert_data,
  *            %http://tizen.org/privilege/appmanager.launch
  *
  * @remarks If you want to use this function, you must add privileges.
- * @remarks The following example demonstrates how to use the %data_control_sql_select() method:
+ * @remarks The following example demonstrates how to use the data_control_sql_select() method:
  *
  * @code
  *
@@ -608,7 +608,7 @@ int data_control_sql_select_with_page(data_control_h provider, char **column_lis
  *            %http://tizen.org/privilege/appmanager.launch
  *
  * @remarks If you want to use this function, you must add privileges.
- *          The following example demonstrates how to use the %data_control_sql_update() method:
+ *          The following example demonstrates how to use the data_control_sql_update() method:
  *
  * @code
  *
@@ -683,7 +683,7 @@ int data_control_sql_update(data_control_h provider, const bundle *update_data,
  *            %http://tizen.org/privilege/appmanager.launch
  *
  * @remarks If you want to use this function, you must add privileges.
- * @remarks The following example demonstrates how to use the %data_control_sql_insert_bulk_data() method:
+ * @remarks The following example demonstrates how to use the data_control_sql_insert_bulk_data() method:
  *
  * @code
  *
index 0bd7a26f9a71c7c3f357fd6bb5df84b121f2444c..22f19c7d79c6f0d19070e0bae3b86e0a53911566 100644 (file)
@@ -48,7 +48,7 @@ typedef struct result_set_s *result_set_cursor;
 /**
  * @brief Moves the cursor to the first position.
  * @since_tizen 2.3
- * @remarks The following example demonstrates how to use the %data_control_sql_step_first() method:
+ * @remarks The following example demonstrates how to use the data_control_sql_step_first() method:
  *
  * @code
  *
@@ -80,7 +80,7 @@ int data_control_sql_step_first(result_set_cursor cursor);
 /**
  * @brief Moves the cursor to the last position.
  * @since_tizen 2.3
- * @remarks The following example demonstrates how to use the %data_control_sql_step_last() method:
+ * @remarks The following example demonstrates how to use the data_control_sql_step_last() method:
  *
  * @code
  *
@@ -112,7 +112,7 @@ int data_control_sql_step_last(result_set_cursor cursor);
 /**
  * @brief Moves the cursor to the next position.
  * @since_tizen 2.3
- * @remarks The following example demonstrates how to use the %data_control_sql_step_next() method:
+ * @remarks The following example demonstrates how to use the data_control_sql_step_next() method:
  *
  * @code
  *