Skip to content

Commit

Permalink
Fix description (#3919)
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerdcarlson authored Jun 1, 2022
1 parent baf080b commit de13f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ecto/repo.ex
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ defmodule Ecto.Repo do
* `:queue_time` - the time spent waiting to check out a database connection
* `:query_time` - the time spent executing the query
* `:decode_time` - the time spent decoding the data received from the database
* `:total_time` - the sum of the other measurements
* `:total_time` - the sum of (`queue_time`, `query_time`, and `decode_time`) subtracted by `idle_time`
All measurements are given in the `:native` time unit. You can read more
about it in the docs for `System.convert_time_unit/3`.
Expand Down

0 comments on commit de13f8f

Please sign in to comment.