From 9642a368f2c16e7a499beac9676deee498cb6c22 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 22 Aug 2023 19:56:13 -0400 Subject: [PATCH] docs: fix typos in docs --- documentation/tutorials/get-started-with-double-entry.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/tutorials/get-started-with-double-entry.md b/documentation/tutorials/get-started-with-double-entry.md index 124d20b..4593636 100644 --- a/documentation/tutorials/get-started-with-double-entry.md +++ b/documentation/tutorials/get-started-with-double-entry.md @@ -15,7 +15,7 @@ Ash Double Entry is implemented as a set of Ash resource extensions. You build t #### Example ```elixir -defmodule YourApp.Leger.Account do +defmodule YourApp.Ledger.Account do use Ash.Resource, data_layer: AshPostgres.DataLayer, extensions: [AshDoubleEntry.Account] @@ -66,7 +66,7 @@ end #### Example ```elixir -defmodule YourApp.Transfer do +defmodule YourApp.Ledger.Transfer do use Ash.Resource, data_layer: AshPostgres.DataLayer, extensions: [AshDoubleEntry.Transfer] @@ -206,7 +206,7 @@ YourApp.Ledger.Transfer #### Check an account's balance ```elixir -YourApp.Leger.Account +YourApp.Ledger.Account |> YourApp.Ledger.get!(account_id, load: :balance) |> Map.get(:balance) # => Decimal.new("20")