Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com>
This commit is contained in:
Edward Minnix III
2024-08-20 21:19:11 -04:00
committed by GitHub
parent 1079486032
commit 8b73d4af86

View File

@@ -158,7 +158,7 @@ This pattern covers many of the cases where we need to summarize flow through a
func TaintFlow() {
elems := []string{"Hello", "World"}
sep := " "
t := strings.Join(elems, sep) // There is taint flow from ss and sep to t.
t := strings.Join(elems, sep) // There is taint flow from elems and sep to t.
...
}