From 163b5e247095c643146d844f33877e16e84650b3 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 8 Apr 2024 17:05:05 -0400 Subject: fix typo in concepts example --- docs/dev/concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/dev') 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' -- cgit v1.3.1