Skip to content

Commit 10109b4

Browse files
committed
Fix class comments
1 parent 49ce91f commit 10109b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

go/ql/src/InconsistentCode/UnhandledCloseWritableHandle.ql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ QualifiedName getConstants(ValueExpr expr) {
3333
}
3434

3535
/**
36-
* Matches the `os.OpenFile` function.
36+
* The `os.OpenFile` function.
3737
*/
3838
class OpenFileFun extends Function {
3939
OpenFileFun() { this.hasQualifiedName("os", "OpenFile") }
4040
}
4141

4242
/**
43-
* Matches the `os.File.Close` function.
43+
* The `os.File.Close` function.
4444
*/
4545
class CloseFileFun extends Function {
4646
CloseFileFun() { this.hasQualifiedName("os.File", "Close") }
4747
}
4848

4949
/**
50-
* Matches the `os.File.Sync` function.
50+
* The `os.File.Sync` function.
5151
*/
5252
class SyncFileFun extends Function {
5353
SyncFileFun() { this.hasQualifiedName("os.File", "Sync") }

0 commit comments

Comments
 (0)