Skip to content

Commit ee27ca7

Browse files
committed
[clang-doc][NFC] Fix missing documentation for EndLineNumber
1 parent a24457e commit ee27ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang-tools-extra/clang-doc/Representation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ struct Location {
262262
std::tie(Other.StartLineNumber, Other.EndLineNumber, Other.Filename);
263263
}
264264

265-
int StartLineNumber = 0; // Line number of this Location.
266-
int EndLineNumber = 0;
265+
int StartLineNumber = 0; // Line number of this Location.
266+
int EndLineNumber = 0; // End line number of this Location.
267267
SmallString<32> Filename; // File for this Location.
268268
bool IsFileInRootDir = false; // Indicates if file is inside root directory
269269
};

0 commit comments

Comments
 (0)