Fix copy-paste Dependabot error (#48)

This commit is contained in:
Patrick Stevens
2023-12-30 12:29:16 +00:00
committed by GitHub
parent dd7e004e36
commit 79d7502f3f
2 changed files with 4 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ updates:
interval: "weekly"
- package-ecosystem: "nuget"
directory: "/ApiSurface"
directory: "/"
schedule:
interval: "weekly"
ignore:

View File

@@ -204,6 +204,9 @@ The motivating example is again ahead-of-time compilation: we wish to avoid the
RestEase is complex, and handles a lot of different stuff.
* If you set the `BaseAddress` on your input `HttpClient`, make sure to end with a trailing slash
on any trailing directories (so `"blah/foo/"` rather than `"blah/foo"`).
We combine URIs using `UriKind.Relative`, so without a trailing slash, the last component may be chopped off.
* Parameters are serialised solely with `ToString`, and there's no control over this;
nor is there control over encoding in any sense.
* Deserialisation follows the same logic as the `JsonParse` generator,