diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-01-05 12:54:23 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-05 12:54:23 -0800 |
commit | 93b38bddba90f54bfdc166322f6e83e5f012e4cb (patch) | |
tree | 7ffc5f5fb63017e37a3879834df3b380c6a7c67f /tools | |
parent | 33d59811fc4882a1fffeb7452be7a370fb769ddf (diff) | |
parent | d56ea8dfe40f02600de233797ba0ba0c4c340cbb (diff) |
Merge pull request #5169 from laijs:fix-typo-whicy
PiperOrigin-RevId: 350200437
Diffstat (limited to 'tools')
-rw-r--r-- | tools/checkescape/checkescape.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkescape/checkescape.go b/tools/checkescape/checkescape.go index e5a7e23c7..a2c7c884f 100644 --- a/tools/checkescape/checkescape.go +++ b/tools/checkescape/checkescape.go @@ -27,7 +27,7 @@ // heap: A direct allocation is made on the heap (hard). // builtin: A call is made to a built-in allocation function (hard). // stack: A stack split as part of a function preamble (soft). -// interface: A call is made via an interface whicy *may* escape (soft). +// interface: A call is made via an interface which *may* escape (soft). // dynamic: A dynamic function is dispatched which *may* escape (soft). // // To the use the package, annotate a function-level comment with either the |