docs: Fix typo in expressions topic (#732)

This commit is contained in:
Marcus Wood 2023-10-11 23:24:31 +11:00 committed by GitHub
parent b0a4a23ab2
commit 95966db148
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -218,7 +218,7 @@ Ash.Query.filter(exists(open_tickets, severity >= parent(severity_threshold)))
The following two examples do not work currently, but are being worked on The following two examples do not work currently, but are being worked on
```elixir ```elixir
has_many :relevant_tickets, Ticket **do** has_many :relevant_tickets, Ticket do
filter expr(status == :open and severity >= parent(severity_threshold)) filter expr(status == :open and severity >= parent(severity_threshold))
end end
``` ```