Skip to content

Commit dd264c6

Browse files
committed
Consistently mention language in metric names
This improves consistency between the lines of code queries and the number of successfully extracted files queries.
1 parent c60d071 commit dd264c6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

csharp/ql/src/Metrics/Summaries/LinesOfCode.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id cs/summary/lines-of-code
3-
* @name Total lines of code in the database
3+
* @name Total lines of C# code in the database
44
* @description The total number of lines of code across all files. This is a useful metric of the size of a database. For all files that were seen during the build, this query counts the lines of code, excluding whitespace or comments.
55
* @kind metric
66
* @tags summary

java/ql/src/Metrics/Summaries/LinesOfCode.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id java/summary/lines-of-code
3-
* @name Total lines of code in the database
3+
* @name Total lines of Java code in the database
44
* @description The total number of lines of code across all files. This is a useful metric of the size of a database.
55
* For all files that were seen during the build, this query counts the lines of code, excluding whitespace
66
* or comments.

ql/ql/src/queries/summary/NumberOfFilesExtractedWithErrors.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id ql/summary/number-of-files-extracted-with-errors
3-
* @name Total number of files that were extracted with errors
3+
* @name Total number of QL files that were extracted with errors
44
* @description The total number of QL code files that we extracted, but where
55
* at least one extraction error occurred in the process.
66
* @kind metric

ql/ql/src/queries/summary/NumberOfSuccessfullyExtractedFiles.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id ql/summary/number-of-successfully-extracted-files
3-
* @name Total number of files that were extracted without error
3+
* @name Total number of QL files that were extracted without error
44
* @description The total number of QL code files that we extracted without
55
* encountering any extraction errors
66
* @kind metric

ruby/ql/src/queries/summary/NumberOfFilesExtractedWithErrors.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id rb/summary/number-of-files-extracted-with-errors
3-
* @name Total number of files that were extracted with errors
3+
* @name Total number of Ruby files that were extracted with errors
44
* @description The total number of Ruby code files that we extracted, but where
55
* at least one extraction error occurred in the process.
66
* @kind metric

ruby/ql/src/queries/summary/NumberOfSuccessfullyExtractedFiles.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id rb/summary/number-of-successfully-extracted-files
3-
* @name Total number of files that were extracted without error
3+
* @name Total number of Ruby files that were extracted without error
44
* @description The total number of Ruby code files that we extracted without
55
* encountering any extraction errors
66
* @kind metric

0 commit comments

Comments
 (0)