We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49ce91f commit 10109b4Copy full SHA for 10109b4
go/ql/src/InconsistentCode/UnhandledCloseWritableHandle.ql
@@ -33,21 +33,21 @@ QualifiedName getConstants(ValueExpr expr) {
33
}
34
35
/**
36
- * Matches the `os.OpenFile` function.
+ * The `os.OpenFile` function.
37
*/
38
class OpenFileFun extends Function {
39
OpenFileFun() { this.hasQualifiedName("os", "OpenFile") }
40
41
42
43
- * Matches the `os.File.Close` function.
+ * The `os.File.Close` function.
44
45
class CloseFileFun extends Function {
46
CloseFileFun() { this.hasQualifiedName("os.File", "Close") }
47
48
49
50
- * Matches the `os.File.Sync` function.
+ * The `os.File.Sync` function.
51
52
class SyncFileFun extends Function {
53
SyncFileFun() { this.hasQualifiedName("os.File", "Sync") }
0 commit comments