Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com>
This commit is contained in:
Edward Minnix III
2024-11-24 21:25:09 -05:00
committed by GitHub
parent fb04e39935
commit 940a99db3b

View File

@@ -215,7 +215,7 @@ This example shows how the Go query pack models flow through a method for a simp
.. code-block:: go
func TaintFlow(u *url.URL) {
host := u.Hostname() // There is taint flow from u to s.
host := u.Hostname() // There is taint flow from u to host.
...
}