Skip to content

Commit ab54b54

Browse files
committed
Use "database" instead of "snapshot" in QLDocs
1 parent 2be73c0 commit ab54b54

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
@@ -834,7 +834,7 @@ class ConversionExpr extends CallOrConversionExpr {
834834
/**
835835
* A function call expression.
836836
*
837-
* On snapshots with incomplete type information, type conversions may be misclassified
837+
* On databases with incomplete type information, type conversions may be misclassified
838838
* as function call expressions.
839839
*
840840
* Examples:
@@ -2104,7 +2104,7 @@ class LabelName extends Name {
21042104
* Holds if `e` is a type expression, as determined by a bottom-up syntactic
21052105
* analysis starting with `TypeName`s.
21062106
*
2107-
* On a snapshot with full type information, this predicate covers all type
2107+
* On a database with full type information, this predicate covers all type
21082108
* expressions. However, if type information is missing then not all type names
21092109
* may be identified as such, so not all type expressions can be determined by
21102110
* 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)