From 86193b77becfef62cf9914c700130e98cb0d9ebd Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Thu, 2 May 2024 21:19:49 -0400 Subject: [PATCH] docs: remove unnecessary sentence in getting started guide --- documentation/tutorials/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/tutorials/get-started.md b/documentation/tutorials/get-started.md index a0dbf56d..bf71e69f 100644 --- a/documentation/tutorials/get-started.md +++ b/documentation/tutorials/get-started.md @@ -396,7 +396,7 @@ Helpdesk.Support.Ticket |> Ash.read!() ``` -The examples above could be easily implemented with `Enum.filter`, but the real power here is to allow you to use the same tools when working with any data layer. If you were using the `AshPostgres.DataLayer` data layer. +The examples above could be easily implemented with `Enum.filter`, but the real power here is to allow you to use the same tools when working with any data layer. Even though it doesn't persist data in any way, `Ash.DataLayer.Simple` can be useful to model static data, or be used for resources where all the actions are manual and inject data from other sources.