Skip to content

Commit 1583d56

Browse files
committed
makrdown
1 parent 1269263 commit 1583d56

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Nuget: [https://www.nuget.org/packages/ErrorOrX/](https://www.nuget.org/packages
4444

4545
Link: [https://ignatandrei.github.io/RSCG_Examples/v2/docs/ErrorOrX](https://ignatandrei.github.io/RSCG_Examples/v2/docs/ErrorOrX)
4646

47-
Source: [https://github.com/ANcpLua/ErrorOrX/](https://github.com/ANcpLua/ErrorOrX/)
47+
Source: [https://github.com/ANcpLua/ErrorOrX](https://github.com/ANcpLua/ErrorOrX)
4848

4949
</details>
5050

v2/Generator/all.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,4 +252,4 @@ Nr,Key,Source,Category
252252
251,OrderedBuildersGenerator, https://github.com/Georgiy-Petrov/OrderedBuildersGenerator,Builder
253253
252,RSCG_idempotency, https://github.com/ignatandrei/RSCG_idempotency,Idempotency
254254
253,FastCloner, https://github.com/lofcz/FastCloner/,Clone
255-
254,ErrorOrX, https://github.com/ANcpLua/ErrorOrX/,API
255+
254,ErrorOrX, https://github.com/ANcpLua/ErrorOrX,API

v2/rscg_examples/ErrorOrX/description.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"nuget":[
55
"https://www.nuget.org/packages/ErrorOrX/"
66
],
7-
"link":"https://github.com/ANcpLua/ErrorOrX/",
7+
"link":"https://github.com/ANcpLua/ErrorOrX",
88
"author":"Alexander Nachtmanns",
9-
"source":"https://github.com/ANcpLua/ErrorOrX/"
9+
"source":"https://github.com/ANcpLua/ErrorOrX"
1010
},
1111
"data":{
1212
"goodFor":["API results from Functional returns of ErroOrX"],

v2/rscg_examples_site/docs/RSCG-Examples/ErrorOrX.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import SameCategory from '../Categories/_PrimitiveAPI.mdx';
1616

1717
## NuGet / site data
1818
[![Nuget](https://img.shields.io/nuget/dt/ErrorOrX?label=ErrorOrX)](https://www.nuget.org/packages/ErrorOrX/)
19-
[![GitHub last commit](https://img.shields.io/github/last-commit/ANcpLua/ErrorOrX?label=updated)](https://github.com/ANcpLua/ErrorOrX/)
19+
[![GitHub last commit](https://img.shields.io/github/last-commit/ANcpLua/ErrorOrX?label=updated)](https://github.com/ANcpLua/ErrorOrX)
2020
![GitHub Repo stars](https://img.shields.io/github/stars/ANcpLua/ErrorOrX?style=social)
2121

2222
## Details
@@ -34,9 +34,9 @@ NuGet:
3434
*https://www.nuget.org/packages/ErrorOrX/*
3535

3636

37-
You can find more details at https://github.com/ANcpLua/ErrorOrX/
37+
You can find more details at https://github.com/ANcpLua/ErrorOrX
3838

39-
Source: https://github.com/ANcpLua/ErrorOrX/
39+
Source: https://github.com/ANcpLua/ErrorOrX
4040

4141
:::
4242

@@ -85,7 +85,7 @@ For each `[Get]`, `[Post]`, `[Put]`, `[Delete]`, `[Patch]` method:
8585
- Applies route constraints (`{id:guid}`, `{count:int}`)
8686
- Sets operation name (`.WithName()`) and tags (`.WithTags()`)
8787

88-
[See EndpointMetadataEmitter.cs](src/ErrorOrX.Generators/Emitters/EndpointMetadataEmitter.cs)
88+
[See EndpointMetadataEmitter.cs](https://github.com/ANcpLua/ErrorOrX/src/ErrorOrX.Generators/Emitters/EndpointMetadataEmitter.cs)
8989

9090
### Parameter Binding
9191

@@ -99,7 +99,7 @@ Automatic inference based on type and HTTP method:
9999
| Service | Interface, abstract, or DI naming pattern (`*Service`, `*Repository`) |
100100
| Special | `HttpContext`, `CancellationToken`, `IFormFile` |
101101

102-
[See BindingCodeEmitter.cs](src/ErrorOrX.Generators/Emitters/BindingCodeEmitter.cs)
102+
[See BindingCodeEmitter.cs](https://github.com/ANcpLua/ErrorOrX/src/ErrorOrX.Generators/Emitters/BindingCodeEmitter.cs)
103103

104104
### Error-to-HTTP Mapping
105105

@@ -117,7 +117,7 @@ ProblemDetails:
117117
| Unexpected | 500 | `InternalServerError<ProblemDetails>` |
118118
| Custom(422) | 422 | `UnprocessableEntity<ProblemDetails>` |
119119

120-
[See ErrorMapping.cs](src/ErrorOrX.Generators/Models/ErrorMapping.cs)
120+
[See ErrorMapping.cs](https://github.com/ANcpLua/ErrorOrX/src/ErrorOrX.Generators/Models/ErrorMapping.cs)
121121

122122
### Request Validation
123123

@@ -138,7 +138,7 @@ Full OpenAPI documentation without manual attributes:
138138
- Operation IDs from method name
139139
- XML doc comments extracted to summaries
140140

141-
[See OpenApiTransformerGenerator.cs](src/ErrorOrX.Generators/OpenApiTransformerGenerator.cs)
141+
[See OpenApiTransformerGenerator.cs](https://github.com/ANcpLua/ErrorOrX/src/ErrorOrX.Generators/OpenApiTransformerGenerator.cs)
142142

143143
### Builder API
144144

@@ -169,7 +169,7 @@ Real-time IDE feedback covering:
169169
| Naming | EOE032-033 | Duplicate route binding, non-PascalCase handler |
170170
| AOT Safety | EOE034-038 | `Activator.CreateInstance`, `dynamic`, `Expression.Compile()` |
171171

172-
[See Descriptors.cs](src/ErrorOrX.Generators/Analyzers/Descriptors.cs)
172+
[See Descriptors.cs](https://github.com/ANcpLua/ErrorOrX/src/ErrorOrX.Generators/Analyzers/Descriptors.cs)
173173

174174
## Installation
175175

@@ -382,7 +382,7 @@ The builder methods `WithCamelCase()` and `WithIgnoreNulls()` are only needed if
382382

383383
## Changelog
384384

385-
See [CHANGELOG.md](CHANGELOG.md) for version history.
385+
See [CHANGELOG.md](https://github.com/ANcpLua/ErrorOrX/CHANGELOG.md) for version history.
386386

387387

388388
:::

v2/rscg_examples_site/static/exports/RSCG.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2030,7 +2030,7 @@
20302030
"Name": "ErrorOrX",
20312031
"Link": "https://ignatandrei.github.io/RSCG_Examples/v2/docs/ErrorOrX",
20322032
"NuGet": "https://www.nuget.org/packages/ErrorOrX/",
2033-
"Source": "https://github.com/ANcpLua/ErrorOrX/",
2033+
"Source": "https://github.com/ANcpLua/ErrorOrX",
20342034
"Category": "API",
20352035
"AddedOn": "2026-02-02T00:00:00"
20362036
}
-4 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)