diff --git a/src/sqlite3.erl b/src/sqlite3.erl index 8c43f27..c3cf6ea 100644 --- a/src/sqlite3.erl +++ b/src/sqlite3.erl @@ -826,7 +826,7 @@ do_init(Options) -> %% {noreply, tuple()} | {noreply, tuple(), integer()} | %% {stop, any(), any(), tuple()} | {stop, any(), tuple()}. --spec handle_call(any(), pid(), #state{}) -> {'reply', any(), #state{}} | {'stop', 'normal', 'ok', #state{}}. +-spec handle_call(any(), {pid(), term()}, #state{}) -> {'reply', any(), #state{}} | {'stop', 'normal', 'ok', #state{}}. handle_call(close, _From, State) -> Reply = ok, {stop, normal, Reply, State};