From 5d27f2049e221e901c03b891fae81e57d9b79e1d Mon Sep 17 00:00:00 2001 From: Alexey Romanov Date: Tue, 23 Nov 2010 17:05:30 +0300 Subject: [PATCH] Oops, forgot the documentation fix --- src/sqlite3.erl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/sqlite3.erl b/src/sqlite3.erl index 5b94f04..617358f 100644 --- a/src/sqlite3.erl +++ b/src/sqlite3.erl @@ -309,8 +309,7 @@ write_many(Db, Tbl, Data) -> %% Data = [{Column :: atom(), Value :: sql_value()}] %% @doc %% Updates rows into Tbl table such that the Value matches the -%% value in Key with Data. Returns RowID of the first updated -%% record. +%% value in Key with Data. %% @end %%-------------------------------------------------------------------- -spec update(atom(), {atom(), sql_value()}, [{atom(), sql_value()}]) -> sql_non_query_result(). @@ -323,8 +322,7 @@ update(Tbl, {Key, Value}, Data) -> %% Data = [{Column :: atom(), Value :: sql_value()}] %% @doc %% Updates rows into Tbl table in Db database such that the Value -%% matches the value in Key with Data. Returns ID of the first -%% updated record. +%% matches the value in Key with Data. %% @end %%-------------------------------------------------------------------- -spec update(atom(), atom(), {atom(), sql_value()}, [{atom(), sql_value()}]) -> sql_non_query_result().