Skip to content

Commit 304c453

Browse files
committed
Remove private reference from docs
1 parent aff1420 commit 304c453

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/ecto/adapters/myxql.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule Ecto.Adapters.MyXQL do
2020
* `:username` - Username
2121
* `:password` - User password
2222
* `:database` - the database to connect to
23-
* `:pool` - The connection pool module, defaults to `DBConnection.ConnectionPool`
23+
* `:pool` - The connection pool module, may be set to `Ecto.Adapters.SQL.Sandbox`
2424
* `:ssl` - Set to true if ssl should be used (default: false)
2525
* `:ssl_opts` - A list of ssl options, see Erlang's `ssl` docs
2626
* `:connect_timeout` - The timeout for establishing new connections (default: 5000)

lib/ecto/adapters/postgres.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ defmodule Ecto.Adapters.Postgres do
3636
* `:database` - the database to connect to
3737
* `:maintenance_database` - Specifies the name of the database to connect to when
3838
creating or dropping the database. Defaults to `"postgres"`
39-
* `:pool` - The connection pool module, defaults to `DBConnection.ConnectionPool`
39+
* `:pool` - The connection pool module, may be set to `Ecto.Adapters.SQL.Sandbox`
4040
* `:ssl` - Set to true if ssl should be used (default: false)
4141
* `:ssl_opts` - A list of ssl options, see Erlang's `ssl` docs
4242
* `:parameters` - Keyword list of connection parameters

lib/ecto/adapters/tds.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defmodule Ecto.Adapters.Tds do
1515
* `:username` - Username
1616
* `:password` - User password
1717
* `:database` - the database to connect to
18-
* `:pool` - The connection pool module, defaults to `DBConnection.ConnectionPool`
18+
* `:pool` - The connection pool module, may be set to `Ecto.Adapters.SQL.Sandbox`
1919
* `:ssl` - Set to true if ssl should be used (default: false)
2020
* `:ssl_opts` - A list of ssl options, see Erlang's `ssl` docs
2121
* `:show_sensitive_data_on_connection_error` - show connection data and

0 commit comments

Comments
 (0)