Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 0005775

Browse files
Apply suggestions from code review
Co-authored-by: Max Schaefer <[email protected]>
1 parent b529cf4 commit 0005775

File tree

1 file changed

+3
-3
lines changed
  • ql/src/semmle/go/frameworks/stdlib

1 file changed

+3
-3
lines changed

ql/src/semmle/go/frameworks/stdlib/Fmt.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,20 +86,20 @@ module Fmt {
8686
}
8787
}
8888

89-
/** The `Scan` function or one of its variants, all of which read from os.Stdin */
89+
/** The `Scan` function or one of its variants, all of which read from `os.Stdin`. */
9090
class Scanner extends Function {
9191
Scanner() { this.hasQualifiedName("fmt", ["Scan", "Scanf", "Scanln"]) }
9292
}
9393

9494
/**
9595
* The `Fscan` function or one of its variants,
96-
* all of which read from a specified io.Reader
96+
* all of which read from a specified `io.Reader`.
9797
*/
9898
class FScanner extends Function {
9999
FScanner() { this.hasQualifiedName("fmt", ["Fscan", "Fscanf", "Fscanln"]) }
100100

101101
/**
102-
* Returns the node corresponding to the io.Reader
102+
* Gets the node corresponding to the `io.Reader`
103103
* argument provided in the call.
104104
*/
105105
FunctionInput getReader() { result.isParameter(0) }

0 commit comments

Comments
 (0)