docs: Fix minor typos in guide headings (#488)

This commit is contained in:
Rebecca Le 2023-01-24 11:40:28 +08:00 committed by GitHub
parent b538dbe391
commit d731933a9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -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

View file

@ -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.