Skip to content

Commit 9b58167

Browse files
authored
Merge pull request #888 from martincostello/Fix-Docs
Fix endColumn documentation
2 parents ffb7e3e + 8b45e1e commit 9b58167

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export interface AnnotationProperties {
163163
startColumn?: number
164164

165165
/**
166-
* The start column for the annotation. Cannot be sent when `startLine` and `endLine` are different values.
166+
* The end column for the annotation. Cannot be sent when `startLine` and `endLine` are different values.
167167
* Defaults to `startColumn` when `startColumn` is provided.
168168
*/
169169
endColumn?: number

packages/core/src/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export interface AnnotationProperties {
6464
startColumn?: number
6565

6666
/**
67-
* The start column for the annotation. Cannot be sent when `startLine` and `endLine` are different values.
67+
* The end column for the annotation. Cannot be sent when `startLine` and `endLine` are different values.
6868
* Defaults to `startColumn` when `startColumn` is provided.
6969
*/
7070
endColumn?: number

0 commit comments

Comments
 (0)