docs: fix module names

This commit is contained in:
Zach Daniel 2023-08-19 00:53:29 -04:00
parent 9dfad7d2fc
commit 8bf2e5c23e

View file

@ -194,13 +194,13 @@ YourApp.Ledger.Account
#### Create transfers between accounts
```elixir
Webuilt.Ledger.Transfer
YourApp.Ledger.Transfer
|> Ash.Changeset.for_create(:transfer, %{
amount: Decimal.new(20),
from_account_id: account_one.id,
to_account_id: account_two.id
})
|> Webuilt.LedgerApi.create!()
|> YourApp.LedgerApi.create!()
```
#### Check an account's balance