Skip to content

Commit 303ae50

Browse files
authored
chore: overhaul GitHub issue/PR templates, add security policy (#222)
This pull request improves the project's GitHub workflows and documentation templates to streamline issue reporting, feature requests, pull requests, and dependency management. It introduces clearer templates for bug reports and feature requests, adds a security policy, and enhances automation settings for dependency updates. **Issue and PR Template Improvements:** * Updated `.github/ISSUE_TEMPLATE/bug_report.md` to require a minimal code snippet for reproducing bugs, clarified expected vs. actual behavior, and standardized environment information. [[1]](diffhunk://#diff-185833cb26d7ac66a4d39042fd576a820c2c2c6d05ad18973bb9c7dce77267c5L4-R5) [[2]](diffhunk://#diff-185833cb26d7ac66a4d39042fd576a820c2c2c6d05ad18973bb9c7dce77267c5L14-R29) * Updated `.github/ISSUE_TEMPLATE/feature_request.md` to pre-fill the title and label for feature requests, ensuring consistency. * Added a new pull request template (`.github/PULL_REQUEST_TEMPLATE.md`) to guide contributors on summaries, change types, and checklists for PR quality. **Security and Community Guidelines:** * Added a `SECURITY.md` file outlining the supported versions, how to report vulnerabilities, and response expectations. * Updated `.github/ISSUE_TEMPLATE/config.yml` to disable blank issues and direct general questions to GitHub Discussions. **Automation and Dependency Management:** * Enhanced `.github/dependabot.yml` to automatically label dependency PRs with "dependencies" and assign them to "petesramek" for all package ecosystems.
1 parent f93fc21 commit 303ae50

16 files changed

Lines changed: 122 additions & 70 deletions
Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
4+
title: '[Bug]: '
5+
labels: 'bug'
66
assignees: ''
77

88
---
@@ -11,28 +11,22 @@ assignees: ''
1111
A clear and concise description of what the bug is.
1212

1313
**To Reproduce**
14-
Steps to reproduce the behavior:
15-
1. Go to '...'
16-
2. Click on '....'
17-
3. Scroll down to '....'
18-
4. See error
14+
Minimal code snippet that reproduces the issue:
15+
16+
```csharp
17+
// paste reproduction code here
18+
```
1919

2020
**Expected behavior**
2121
A clear and concise description of what you expected to happen.
2222

23-
**Screenshots**
24-
If applicable, add screenshots to help explain your problem.
25-
26-
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
23+
**Actual behavior**
24+
A clear and concise description of what actually happens (include exception messages/stack traces if applicable).
3025

31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
26+
**Environment**
27+
- Package version: [e.g. 2.1.0]
28+
- .NET version: [e.g. net8.0]
29+
- OS: [e.g. Windows 11, Ubuntu 24.04]
3630

3731
**Additional context**
3832
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask a question
4+
url: https://github.com/petesramek/polyline-algorithm-csharp/discussions
5+
about: Use GitHub Discussions for questions, ideas, or general feedback.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
4+
title: '[Feature]: '
5+
labels: 'enhancement'
66
assignees: ''
77

88
---

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Summary
2+
3+
<!-- Briefly describe what this PR does and why. -->
4+
5+
## Type of change
6+
7+
- [ ] Bug fix
8+
- [ ] New feature
9+
- [ ] Breaking change
10+
- [ ] Documentation / samples only
11+
12+
## Checklist
13+
14+
- [ ] Unit tests added or updated (`/tests`)
15+
- [ ] Benchmarks added or updated (`/benchmarks`) — if performance-impacting
16+
- [ ] XML doc comments updated for all public API changes
17+
- [ ] `dotnet format` run with no issues
18+
- [ ] README and `/samples` updated — if public API changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,23 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
labels:
8+
- "dependencies"
9+
assignees:
10+
- "petesramek"
711
- package-ecosystem: "nuget"
812
directory: "/"
913
schedule:
1014
interval: "weekly"
15+
labels:
16+
- "dependencies"
17+
assignees:
18+
- "petesramek"
1119
- package-ecosystem: "github-actions"
1220
directory: "/"
1321
schedule:
1422
interval: "weekly"
23+
labels:
24+
- "dependencies"
25+
assignees:
26+
- "petesramek"

SECURITY.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
| Version | Supported |
6+
| ------- | --------- |
7+
| Latest ||
8+
| Older ||
9+
10+
Only the latest published version receives security fixes. If you are on an older version, please upgrade.
11+
12+
## Reporting a Vulnerability
13+
14+
**Please do not open a public GitHub issue for security vulnerabilities.**
15+
16+
Report security issues privately via [GitHub Security Advisories](https://github.com/petesramek/polyline-algorithm-csharp/security/advisories/new).
17+
18+
Include:
19+
- A description of the vulnerability
20+
- Steps to reproduce or a proof-of-concept
21+
- Potential impact assessment
22+
23+
You can expect an initial response within 5 business days. Once confirmed, a fix will be prioritized and a patch release issued. You will be credited in the release notes unless you prefer to remain anonymous.

api-reference/0.0/PolylineAlgorithm.Abstraction.AbstractPolylineDecoder-2.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class AbstractPolylineDecoder<TPolyline, TCoordinate>
33
body:
44
- api1: Class AbstractPolylineDecoder<TPolyline, TCoordinate>
55
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2
6-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L22
6+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L22
77
metadata:
88
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2
99
commentId: T:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2
@@ -56,15 +56,15 @@ body:
5656
- h2: Constructors
5757
- api3: AbstractPolylineDecoder()
5858
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2__ctor
59-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L28
59+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L28
6060
metadata:
6161
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.#ctor
6262
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.#ctor
6363
- markdown: Initializes a new instance of the <xref href="PolylineAlgorithm.Abstraction.AbstractPolylineDecoder%602" data-throw-if-not-resolved="false"></xref> class with default encoding options.
6464
- code: protected AbstractPolylineDecoder()
6565
- api3: AbstractPolylineDecoder(PolylineEncodingOptions)
6666
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2__ctor_PolylineAlgorithm_PolylineEncodingOptions_
67-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L40
67+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L40
6868
metadata:
6969
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.#ctor(PolylineAlgorithm.PolylineEncodingOptions)
7070
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.#ctor(PolylineAlgorithm.PolylineEncodingOptions)
@@ -86,7 +86,7 @@ body:
8686
- h2: Properties
8787
- api3: Options
8888
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2_Options
89-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L54
89+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L54
9090
metadata:
9191
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.Options
9292
commentId: P:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.Options
@@ -100,7 +100,7 @@ body:
100100
- h2: Methods
101101
- api3: CreateCoordinate(double, double)
102102
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2_CreateCoordinate_System_Double_System_Double_
103-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L202
103+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L202
104104
metadata:
105105
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.CreateCoordinate(System.Double,System.Double)
106106
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.CreateCoordinate(System.Double,System.Double)
@@ -125,7 +125,7 @@ body:
125125
description: A <code class="typeparamref">TCoordinate</code> instance representing the specified geographic coordinate.
126126
- api3: Decode(TPolyline, CancellationToken)
127127
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2_Decode__0_System_Threading_CancellationToken_
128-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L81
128+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L81
129129
metadata:
130130
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.Decode(`0,System.Threading.CancellationToken)
131131
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.Decode(`0,System.Threading.CancellationToken)
@@ -175,7 +175,7 @@ body:
175175
description: Thrown when <code class="paramref">cancellationToken</code> is canceled during decoding.
176176
- api3: GetReadOnlyMemory(in TPolyline)
177177
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2_GetReadOnlyMemory__0__
178-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L187
178+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L187
179179
metadata:
180180
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.GetReadOnlyMemory(`0@)
181181
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.GetReadOnlyMemory(`0@)
@@ -199,7 +199,7 @@ body:
199199
description: A <xref href="System.ReadOnlyMemory%601" data-throw-if-not-resolved="false"></xref> of <xref href="System.Char" data-throw-if-not-resolved="false"></xref> representing the encoded polyline characters.
200200
- api3: ValidateFormat(ReadOnlyMemory<char>, ILogger?)
201201
id: PolylineAlgorithm_Abstraction_AbstractPolylineDecoder_2_ValidateFormat_System_ReadOnlyMemory_System_Char__Microsoft_Extensions_Logging_ILogger_
202-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L167
202+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs#L167
203203
metadata:
204204
uid: PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.ValidateFormat(System.ReadOnlyMemory{System.Char},Microsoft.Extensions.Logging.ILogger)
205205
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineDecoder`2.ValidateFormat(System.ReadOnlyMemory{System.Char},Microsoft.Extensions.Logging.ILogger)

api-reference/0.0/PolylineAlgorithm.Abstraction.AbstractPolylineEncoder-2.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class AbstractPolylineEncoder<TCoordinate, TPolyline>
33
body:
44
- api1: Class AbstractPolylineEncoder<TCoordinate, TPolyline>
55
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2
6-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L27
6+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L27
77
metadata:
88
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2
99
commentId: T:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2
@@ -62,15 +62,15 @@ body:
6262
- h2: Constructors
6363
- api3: AbstractPolylineEncoder()
6464
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2__ctor
65-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L33
65+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L33
6666
metadata:
6767
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.#ctor
6868
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.#ctor
6969
- markdown: Initializes a new instance of the <xref href="PolylineAlgorithm.Abstraction.AbstractPolylineEncoder%602" data-throw-if-not-resolved="false"></xref> class with default encoding options.
7070
- code: protected AbstractPolylineEncoder()
7171
- api3: AbstractPolylineEncoder(PolylineEncodingOptions)
7272
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2__ctor_PolylineAlgorithm_PolylineEncodingOptions_
73-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L43
73+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L43
7474
metadata:
7575
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.#ctor(PolylineAlgorithm.PolylineEncodingOptions)
7676
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.#ctor(PolylineAlgorithm.PolylineEncodingOptions)
@@ -92,7 +92,7 @@ body:
9292
- h2: Properties
9393
- api3: Options
9494
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2_Options
95-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L57
95+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L57
9696
metadata:
9797
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.Options
9898
commentId: P:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.Options
@@ -106,7 +106,7 @@ body:
106106
- h2: Methods
107107
- api3: CreatePolyline(ReadOnlyMemory<char>)
108108
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2_CreatePolyline_System_ReadOnlyMemory_System_Char__
109-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L174
109+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L174
110110
metadata:
111111
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.CreatePolyline(System.ReadOnlyMemory{System.Char})
112112
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.CreatePolyline(System.ReadOnlyMemory{System.Char})
@@ -130,7 +130,7 @@ body:
130130
description: An instance of <code class="typeparamref">TPolyline</code> representing the encoded polyline.
131131
- api3: Encode(ReadOnlySpan<TCoordinate>, CancellationToken)
132132
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2_Encode_System_ReadOnlySpan__0__System_Threading_CancellationToken_
133-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L80
133+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L80
134134
metadata:
135135
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.Encode(System.ReadOnlySpan{`0},System.Threading.CancellationToken)
136136
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.Encode(System.ReadOnlySpan{`0},System.Threading.CancellationToken)
@@ -176,7 +176,7 @@ body:
176176
description: Thrown when the internal encoding buffer cannot accommodate the encoded value.
177177
- api3: GetLatitude(TCoordinate)
178178
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2_GetLatitude__0_
179-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L194
179+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L194
180180
metadata:
181181
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.GetLatitude(`0)
182182
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.GetLatitude(`0)
@@ -196,7 +196,7 @@ body:
196196
description: The latitude value as a <xref href="System.Double" data-throw-if-not-resolved="false"></xref>.
197197
- api3: GetLongitude(TCoordinate)
198198
id: PolylineAlgorithm_Abstraction_AbstractPolylineEncoder_2_GetLongitude__0_
199-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L184
199+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs#L184
200200
metadata:
201201
uid: PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.GetLongitude(`0)
202202
commentId: M:PolylineAlgorithm.Abstraction.AbstractPolylineEncoder`2.GetLongitude(`0)

api-reference/0.0/PolylineAlgorithm.Abstraction.IPolylineDecoder-2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Interface IPolylineDecoder<TPolyline, TValue>
33
body:
44
- api1: Interface IPolylineDecoder<TPolyline, TValue>
55
id: PolylineAlgorithm_Abstraction_IPolylineDecoder_2
6-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs#L22
6+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs#L22
77
metadata:
88
uid: PolylineAlgorithm.Abstraction.IPolylineDecoder`2
99
commentId: T:PolylineAlgorithm.Abstraction.IPolylineDecoder`2
@@ -31,7 +31,7 @@ body:
3131
- h2: Methods
3232
- api3: Decode(TPolyline, CancellationToken)
3333
id: PolylineAlgorithm_Abstraction_IPolylineDecoder_2_Decode__0_System_Threading_CancellationToken_
34-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs#L48
34+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs#L48
3535
metadata:
3636
uid: PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode(`0,System.Threading.CancellationToken)
3737
commentId: M:PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode(`0,System.Threading.CancellationToken)

api-reference/0.0/PolylineAlgorithm.Abstraction.IPolylineEncoder-2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Interface IPolylineEncoder<TValue, TPolyline>
33
body:
44
- api1: Interface IPolylineEncoder<TValue, TPolyline>
55
id: PolylineAlgorithm_Abstraction_IPolylineEncoder_2
6-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/IPolylineEncoder.cs#L36
6+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/IPolylineEncoder.cs#L36
77
metadata:
88
uid: PolylineAlgorithm.Abstraction.IPolylineEncoder`2
99
commentId: T:PolylineAlgorithm.Abstraction.IPolylineEncoder`2
@@ -63,7 +63,7 @@ body:
6363
- h2: Methods
6464
- api3: Encode(ReadOnlySpan<TValue>, CancellationToken)
6565
id: PolylineAlgorithm_Abstraction_IPolylineEncoder_2_Encode_System_ReadOnlySpan__0__System_Threading_CancellationToken_
66-
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/bugfix/incorrect-normalization/src/PolylineAlgorithm/Abstraction/IPolylineEncoder.cs#L76
66+
src: https://github.com/petesramek/polyline-algorithm-csharp/blob/copilot/review-github-templates/src/PolylineAlgorithm/Abstraction/IPolylineEncoder.cs#L76
6767
metadata:
6868
uid: PolylineAlgorithm.Abstraction.IPolylineEncoder`2.Encode(System.ReadOnlySpan{`0},System.Threading.CancellationToken)
6969
commentId: M:PolylineAlgorithm.Abstraction.IPolylineEncoder`2.Encode(System.ReadOnlySpan{`0},System.Threading.CancellationToken)

0 commit comments

Comments
 (0)