From 010a443bf39d4ccb35eceb78870b987a60562285 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Thu, 4 Jan 2024 12:55:14 -0500 Subject: [PATCH] docs: fix typo in getting started guide --- documentation/tutorials/get-started-with-ash-money.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/tutorials/get-started-with-ash-money.md b/documentation/tutorials/get-started-with-ash-money.md index 0fd06ec..a65be55 100644 --- a/documentation/tutorials/get-started-with-ash-money.md +++ b/documentation/tutorials/get-started-with-ash-money.md @@ -24,7 +24,7 @@ attribute :balance, AshMoney.Types.Money To support money operations in runtime expressions, which use `Ash`'s operator overloading feature, we have to tell Ash about the `Ash.Type.Money` using the `known_type` configuration. ``` -config :ash, :known_types, [Ash.Type.Money] +config :ash, :known_types, [AshMoney.Types.Money] ``` ## Referencing with `:money`