Skip to content

Commit 12ab956

Browse files
authored
Merge pull request github#11098 from github/henrymercer/summary-metrics-consistent-naming
Summary metrics: Improve consistency of naming
2 parents 8060b30 + dd264c6 commit 12ab956

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
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/LinesOfUserCode.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id ql/summary/lines-of-user-code
3-
* @name Total Lines of user written QL code in the database
3+
* @name Total lines of user written QL code in the database
44
* @description The total number of lines of QL code from the source code
55
* directory, excluding external library and auto-generated files. This
66
* query counts the lines of code, excluding whitespace 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/LinesOfUserCode.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id rb/summary/lines-of-user-code
3-
* @name Total Lines of user written Ruby code in the database
3+
* @name Total lines of user written Ruby code in the database
44
* @description The total number of lines of Ruby code from the source code
55
* directory, excluding external library and auto-generated files. This
66
* query counts the lines of code, excluding whitespace or comments.

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)