Skip to content

Commit d8710c8

Browse files
committed
Clean up some documentation
1 parent c330935 commit d8710c8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Diff for: lib/ecto/adapters/sqlite3.ex

+6-4
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,10 @@ defmodule Ecto.Adapters.SQLite3 do
9494
The `:binary_id_type` configuration option allows configuring how `:binary_id` fields
9595
are stored in the database as well as the type of the column in which these IDs will
9696
be stored. The possible values are:
97-
* `:string` (default): IDs are stored as strings, and the type of the column is `TEXT`.
98-
* `:binary`: IDs are stored in their raw binary form, and the type of the column is `BLOB`.
97+
98+
* `:string` - IDs are stored as strings, and the type of the column is `TEXT`. This is
99+
the default.
100+
* `:binary` - IDs are stored in their raw binary form, and the type of the column is `BLOB`.
99101
100102
The main differences between the two formats are as follows:
101103
* When stored as binary, UUIDs require much less space in the database. IDs stored as
@@ -128,8 +130,8 @@ defmodule Ecto.Adapters.SQLite3 do
128130
129131
### LIKE match on BLOB columns
130132
131-
We have the DSQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option set to true, as
132-
[recommended][3] by SQLite. This means you cannot do LIKE queries on BLOB columns.
133+
We have the `SQLITE_LIKE_DOESNT_MATCH_BLOBS` compile-time definition option set to true,
134+
as [recommended by SQLite][3]. This means you cannot do `LIKE` queries on `BLOB` columns.
133135
134136
### Case sensitivity
135137

0 commit comments

Comments
 (0)