From 0215e18c0cc57637a9204f0c2ba4dde4c1cdebee Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Mon, 22 Apr 2019 15:43:42 -0400 Subject: Fix DataVariable API example. --- python/binaryview.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/binaryview.py b/python/binaryview.py index 3892e20e..1baeab2b 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -3282,7 +3282,7 @@ class BinaryView(object): :rtype: DataVariable :Example: - >>> hex(bv.get_next_data_var_after(0x10000000)) + >>> bv.get_next_data_var_after(0x10000000) >>> """ @@ -3392,7 +3392,7 @@ class BinaryView(object): :rtype: DataVariable :Example: - >>> hex(bv.get_previous_data_var_before(0x1000003c)) + >>> bv.get_previous_data_var_before(0x1000003c) >>> """ -- cgit v1.3.1