From d731933a9d43f41f3e5d0390336554bdf33cc97b Mon Sep 17 00:00:00 2001 From: Rebecca Le <543859+sevenseacat@users.noreply.github.com> Date: Tue, 24 Jan 2023 11:40:28 +0800 Subject: [PATCH] docs: Fix minor typos in guide headings (#488) --- documentation/how_to/validate-changes.md | 4 +--- documentation/tutorials/extending-resources.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/documentation/how_to/validate-changes.md b/documentation/how_to/validate-changes.md index ffdf235e..95aac91a 100644 --- a/documentation/how_to/validate-changes.md +++ b/documentation/how_to/validate-changes.md @@ -1,8 +1,6 @@ # Validate Changes -# Validations - -In ash, there are three kinds of validations. +In Ash, there are three kinds of validations. - The simple `allow_nil?` and `writable?` validations provided for attributes - Type constraints, specific to each type diff --git a/documentation/tutorials/extending-resources.md b/documentation/tutorials/extending-resources.md index 61fd8bfa..98aebe23 100644 --- a/documentation/tutorials/extending-resources.md +++ b/documentation/tutorials/extending-resources.md @@ -1,4 +1,4 @@ -# Extending Resource +# Extending Resources Resource extensions allow you to make powerful modifications to resources, and extend the DSL to configure how those modifications are made. If you are using `AshPostgres`, `AshGraphql` or `AshJsonApi`, they are all integrated into a resource using extensions. In this guide we will build a simple extension that adds timestamps to your resource. We'll also show some simple patterns that can help ensure that all of your resources are using your extension.