diff options
| author | Brian Potchik <brian@vector35.com> | 2019-04-22 15:43:42 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2019-04-22 15:43:42 -0400 |
| commit | 0215e18c0cc57637a9204f0c2ba4dde4c1cdebee (patch) | |
| tree | e19094d80c5eaa702b1dd9ad1ac3640fba04dbe8 /python/binaryview.py | |
| parent | 07208c9f67823c7b685d393848a36ee23bc252ac (diff) | |
Fix DataVariable API example.
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) <var 0x1000003c: int32_t> >>> """ @@ -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) <var 0x10000000: int16_t> >>> """ |
