summaryrefslogtreecommitdiff
path: root/rust/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'rust/README.md')
-rw-r--r--rust/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/README.md b/rust/README.md
index 1edd1d90..a18d46cd 100644
--- a/rust/README.md
+++ b/rust/README.md
@@ -34,7 +34,7 @@ fn main() {
println!("Function count: {}", bv.functions().len());
for func in &bv.functions() {
- println!("{}:", func.symbol().full_name());
+ println!("{}: {}", func.start(), func.symbol());
}
}
```