Fix typos 50/216950/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 4 Nov 2019 10:39:53 +0000 (19:39 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 5 Nov 2019 05:31:40 +0000 (14:31 +0900)
Change-Id: I9239f74cf6f5653ad0523c3b44276c5aefa563d7
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
doc/smartreply_doc.h
include/db_listener_iface.h
include/db_mgr.h

index b54eb9585de711f0bc22292619ea286f4d09dbab..6f82045be3fb617bcaa54e9bb33c05a296652607 100644 (file)
@@ -27,7 +27,7 @@
 *   \#include <smartreply_service.h>
 *
 * @section CAPI_SMARTREPLY_SERVICE_OVERVIEW Overview
-* The Smat Reply APIs provides functions to generate reply candidates for received message.\n
+* The Smart Reply APIs provides functions to generate reply candidates for received message.\n
 * This provides following functionalities.\n
 * - Get candidate reply messages for a given received message sync/asynchronously
 * - Access & destory candidate reply list
index 37e21b8aa85d70b5c6c6d1922a82d6d1f7f3df11..cc02f765e916915162de6f24610fbd8bda1b6d20 100755 (executable)
@@ -46,7 +46,7 @@ namespace smr {
                         * @brief       Called when a query execution is done.
                         * @param[in]   query_id        The query id passed through smr::db_manager::execute().
                         * @param[in]   error           Error code. If success, 0. Otherwise, a negative value.
-                        * @param[in]   records         Data records retreived.
+                        * @param[in]   records         Data records retrieved.
                         */
                        virtual void on_query_result_received(unsigned int query_id, int error, std::vector<json>& records) = 0;
        };
index 0749ea75609b140d734f005680e79bef8c09aef8..61439d95de10eee43eabce3e838279f0f8fe0d86 100755 (executable)
@@ -52,7 +52,7 @@ namespace smr {
                 * @brief               Execute a SQL query. Async.
                 * @param[in]   query_id        This number will be returned through db_listener_iface::on_query_result_received().
                 * @param[in]   query           A query to be executed.
-                * @param[in]   listener        A listner object to receive the result.
+                * @param[in]   listener        A listener object to receive the result.
                 */
                bool execute(unsigned int query_id, const char* query, db_listener_iface* listener);