diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2024-04-08 17:05:05 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2024-04-08 17:05:05 -0400 |
| commit | 163b5e247095c643146d844f33877e16e84650b3 (patch) | |
| tree | 506747dd27197a64a1f43723ee38330f60a68416 /docs/dev | |
| parent | fd45eb84c513dc514ee8eb576ebb6a2816716987 (diff) | |
fix typo in concepts example
Diffstat (limited to 'docs/dev')
| -rw-r--r-- | docs/dev/concepts.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/concepts.md b/docs/dev/concepts.md index d3046ec6..25dd5af0 100644 --- a/docs/dev/concepts.md +++ b/docs/dev/concepts.md @@ -84,7 +84,7 @@ def collect_call_target(i) -> None: match i: case HighLevelILCall(dest=HighLevelILConstPtr(constant=c)): return c -set([hex(a) for a in current_hlil.traverse(print_call_target)]) +set([hex(a) for a in current_hlil.traverse(collect_call_target)]) # collect all the Variables named 'this' |
