Skip to content

Commit c67acf9

Browse files
committed
Fix typespec formatting
1 parent 5870b15 commit c67acf9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/exqlite/sqlite3.ex

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ defmodule Exqlite.Sqlite3 do
7878
@spec step(db(), statement()) :: :done | :busy | {:row, [row()]} | {:error, reason()}
7979
def step(conn, statement), do: Sqlite3NIF.step(conn, statement)
8080

81-
@spec multi_step(db(), statement()) :: :busy | {:rows, [row()]} | {:done, [row()]} | {:error, reason()}
81+
@spec multi_step(db(), statement()) ::
82+
:busy | {:rows, [row()]} | {:done, [row()]} | {:error, reason()}
8283
def multi_step(conn, statement) do
8384
chunk_size = Application.get_env(:exqlite, :default_chunk_size, 50)
8485
multi_step(conn, statement, chunk_size)

0 commit comments

Comments
 (0)