Skip to content

Commit 68700e4

Browse files
committed
Fix descriptions
1 parent 5a7557f commit 68700e4

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
## About
3232

33-
**AxisEndpoints** is a DSL for implementing the Request-Endpoint-Response (REPR) pattern in ASP.NET Core. It consolidates each API endpoint into a self-contained class with a clear, explicit programming interface.
33+
**AxisEndpoints** is a library for implementing the Request-Endpoint-Response (REPR) pattern in ASP.NET Core. It consolidates each API endpoint into a self-contained class with a clear, explicit programming interface.
3434

3535
- **Clear and explicit programming interface**: each endpoint declares its request type, result type, route, and metadata in one place.
3636
- **Modular package structure**: extensions are provided as separate packages so you can include only the features you need.
@@ -46,7 +46,7 @@ Packages are available on nuget.org:
4646
| Package | Description |
4747
| ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
4848
| [AxisEndpoints](https://www.nuget.org/packages/AxisEndpoints) | Core package. Provides `IEndpoint<TRequest, TResult>` and related primitives. |
49-
| [AxisEndpoints.Extensions.CsvHelper](https://www.nuget.org/packages/AxisEndpoints.Extensions.CsvHelpe) | Optional. Integrates CsvHelper for typed CSV import (`CsvRequest<TRow>`) and streaming export (`CsvResponse<TRow>`). |
49+
| [AxisEndpoints.Extensions.CsvHelper](https://www.nuget.org/packages/AxisEndpoints.Extensions.CsvHelper) | Optional. Integrates CsvHelper for typed CSV import (`CsvRequest<TRow>`) and streaming export (`CsvResponse<TRow>`). |
5050

5151
You can install with .NET CLI with the following command:
5252

docs/src/content/docs/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: AxisEndpoints
3-
description: A DSL for implementing the Request-Endpoint-Response (REPR) pattern in ASP.NET Core
3+
description: A library for implementing the Request-Endpoint-Response (REPR) pattern in ASP.NET Core
44
template: splash
55
hero:
66
tagline: Provides "Axis" for your ASP.NET Core Web API projects!
@@ -18,7 +18,7 @@ import { Card, CardGrid } from "@astrojs/starlight/components";
1818

1919
## About
2020

21-
**AxisEndpoints** is a DSL for implementing the Request-Endpoint-Response (REPR) pattern in ASP.NET Core. It consolidates each API endpoint into a self-contained class with a clear, explicit programming interface.
21+
**AxisEndpoints** is a library for implementing the Request-Endpoint-Response (REPR) pattern in ASP.NET Core. It consolidates each API endpoint into a self-contained class with a clear, explicit programming interface.
2222

2323
```csharp
2424
using System.Net;

src/AxisEndpoints/AxisEndpoints.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageId>AxisEndpoints</PackageId>
99
<Version>1.0.0</Version>
1010
<Title>AxisEndpoints</Title>
11-
<Description>A DSL for implementing the Request-Endpoint-Response (REPR) pattern in ASP.NET Core. Consolidates endpoints with a clear and explicit programming interface, well-suited for Vertical Slice Architecture projects.</Description>
11+
<Description>A library for implementing the Request-Endpoint-Response pattern in ASP.NET Core, based on Minimal API</Description>
1212
<Authors>Sheepla</Authors>
1313
<PackageProjectUrl>https://github.com/sheepla/AxisEndpoints</PackageProjectUrl>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -18,7 +18,7 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<!-- WebApplication, IHttpContextAccessor など ASP.NET Core の型を使うために必要 -->
21+
<!-- Required for using types ASP.NET Core types e.g. WebApplication, IHttpContextAccessor -->
2222
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2323
</ItemGroup>
2424

0 commit comments

Comments
 (0)