diff options
| author | Claude Hemberger <hemberger.cl@gmail.com> | 2017-01-28 13:32:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-28 13:32:29 +0100 |
| commit | a43fb5d02a651a5d0ae92f06cb7282557bc045b3 (patch) | |
| tree | f2cb36fc19b9ab1e7dfeb818b3f77ed43769adac /python/binaryview.py | |
| parent | ecb848f7cedeecf033f283df0b7d1fa8aca80d50 (diff) | |
example documentation fix for BinaryWriter
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 476f2be6..def04077 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -3591,7 +3591,7 @@ class BinaryWriter(object): >>> hex(bw.offset) '0x100000008L' >>> bw.seek(0x100000000) - >>> hex(br.offset) + >>> hex(bw.offset) '0x100000000L' >>> """ @@ -3608,7 +3608,7 @@ class BinaryWriter(object): >>> hex(bw.offset) '0x100000008L' >>> bw.seek_relative(-8) - >>> hex(br.offset) + >>> hex(bw.offset) '0x100000000L' >>> """ |
