Skip to content

Commit a16c438

Browse files
committed
Use "database" instead of "snapshot" in QLDocs
1 parent 39e0382 commit a16c438

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

go/ql/lib/semmle/go/Expr.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ class ConversionExpr extends CallOrConversionExpr {
829829
/**
830830
* A function call expression.
831831
*
832-
* On snapshots with incomplete type information, type conversions may be misclassified
832+
* On databases with incomplete type information, type conversions may be misclassified
833833
* as function call expressions.
834834
*
835835
* Examples:
@@ -2093,7 +2093,7 @@ class LabelName extends Name {
20932093
* Holds if `e` is a type expression, as determined by a bottom-up syntactic
20942094
* analysis starting with `TypeName`s.
20952095
*
2096-
* On a snapshot with full type information, this predicate covers all type
2096+
* On a database with full type information, this predicate covers all type
20972097
* expressions. However, if type information is missing then not all type names
20982098
* may be identified as such, so not all type expressions can be determined by
20992099
* a bottom-up analysis. In such cases, `isTypeExprTopDown` below is useful.

go/ql/lib/semmle/go/controlflow/IR.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ module IR {
294294
/**
295295
* An IR instruction that reads the value of a field.
296296
*
297-
* On snapshots with incomplete type information, method expressions may sometimes be
297+
* On databases with incomplete type information, method expressions may sometimes be
298298
* misclassified as field reads.
299299
*/
300300
class FieldReadInstruction extends ComponentReadInstruction {

go/ql/src/filters/ClassifyFiles.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @name Classify files
3-
* @description This query produces a list of all files in a snapshot that are classified as
3+
* @description This query produces a list of all files in a database that are classified as
44
* generated code, test code or vendored-in library code.
55
* @kind file-classifier
66
* @id go/file-classifier

0 commit comments

Comments
 (0)