Skip to content

Commit 03d8e1c

Browse files
committed
Fix typos
1 parent 5e19f3e commit 03d8e1c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/routes/docs/[...1]getting-started/[...1]introduction/+page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Here is a full list of what each library has to offer:
2323
- Source generator for Minimal APIs for Immediate.Handlers
2424
- Allows for easily mapping handlers to endpoints
2525

26-
## Immediate.Validation
26+
## Immediate.Validations
2727

2828
- Source generator for validating Immediate.Handlers handlers parameters
2929
- Built for maximum performance and minimal boilerplate validation

src/routes/docs/[...1]getting-started/[...2]quickstart/+page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cd MyApp
2222
dotnet add package Immediate.Handlers
2323

2424
# Optional:
25-
dotnet add package Immediate.Validation
25+
dotnet add package Immediate.Validations
2626
dotnet add package Immediate.Apis
2727
```
2828

@@ -110,4 +110,4 @@ public static partial class GetUserQuery
110110

111111
:::
112112

113-
Keep reading the docs to learn about addressing cross-cutting concerns like logging with behaviors, validating the queries and commands with Immediate.Validation and more! You can also check out our cookbook for complete, ready-made examples.
113+
Keep reading the docs to learn about addressing cross-cutting concerns like logging with behaviors, validating the queries and commands with Immediate.Validations and more! You can also check out our cookbook for complete, ready-made examples.

src/routes/docs/[...2]Immediate.Handlers/[...2]creating-behaviors/+page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Creating behaviors
44

55
# {$frontmatter.title}
66

7-
Pipeline behaviors allow you to inject your own logic around the handling of requests, which lets you build a pipeline to address common cross-cutting concerns such as logging, validation etc. In fact, `Immediate.Validation` performs its validation of your queries and commands by using a behavior.
7+
Pipeline behaviors allow you to inject your own logic around the handling of requests, which lets you build a pipeline to address common cross-cutting concerns such as logging, validation etc. In fact, `Immediate.Validations` performs its validation of your queries and commands by using a behavior.
88

99
You can think of behaviors as akin to filters known from ASP.NET Core.
1010

src/routes/docs/[...6]cookbook/[...3]web-api/+page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ The example uses the following stack:
1919
- ASP.NET Core 8
2020
- EFCore 8
2121
- PostgreSQL
22-
- Immediate.Handlers + Immediate.Apis + Immediate.Validation
22+
- Immediate.Handlers + Immediate.Apis + Immediate.Validations

src/routes/docs/[...6]cookbook/[...4]blazor/+page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ The example uses the following stack:
2020
- Blazor Server
2121
- EFCore 8
2222
- PostgreSQL
23-
- Immediate.Handlers + Immediate.Apis + Immediate.Validation
23+
- Immediate.Handlers + Immediate.Apis + Immediate.Validations

src/routes/docs/[...6]cookbook/[...5]cli/+page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ The example uses the following stack:
1818

1919
- Microsoft.Extensions.DependencyInjection
2020
- CliFx*
21-
- Immediate.Handlers + Immediate.Apis + Immediate.Validation
21+
- Immediate.Handlers + Immediate.Apis + Immediate.Validations
2222

2323
* - `CliFx` can be easily replaced with BCL or another CLI library (e.g. `System.CommandLine`.)

0 commit comments

Comments
 (0)