@@ -1660,9 +1660,9 @@ defmodule Ecto.Repo do
16601660 * `:stale_error_message` - The message to add to the configured
16611661 `:stale_error_field` when stale errors happen, defaults to "is stale".
16621662
1663- * `:allow_stale` - Doesn't error if insert is stale. Defaults to `false`.
1663+ * `:allow_stale` - Doesn't error when structs are stale. Defaults to `false`.
16641664 This may happen if there are rules or triggers in the database that
1665- rejects the insert operation.
1665+ rejects the insert operation. This option cascades to associations.
16661666
16671667 See the ["Shared options"](#module-shared-options) section at the module
16681668 documentation for more options.
@@ -1863,7 +1863,7 @@ defmodule Ecto.Repo do
18631863 * `:allow_stale` - Doesn't error if update is stale. Defaults to `false`.
18641864 This may happen if the struct has been deleted from the database before
18651865 the update or if there is a rule or a trigger on the database that rejects
1866- the update operation.
1866+ the update operation. This option cascades to associations.
18671867
18681868 See the ["Shared options"](#module-shared-options) section at the module
18691869 documentation for more options.
@@ -1909,8 +1909,8 @@ defmodule Ecto.Repo do
19091909 * `:stale_error_message` - The message to add to the configured
19101910 `:stale_error_field` when stale errors happen, defaults to "is stale".
19111911 Only applies to updates.
1912- * `:allow_stale` - Doesn't error if delete is stale. Defaults to `false`.
1913- Only applies to updates .
1912+ * `:allow_stale` - Doesn't error when structs are stale. Defaults to `false`.
1913+ This option cascades to associations .
19141914
19151915 See the ["Shared options"](#module-shared-options) section at the module
19161916 documentation for more options.
0 commit comments