Skip to content

Commit 791aa37

Browse files
authored
Merge pull request yidao620c#227 from NeoLuk/master
"Hallo" --> "Hello"
2 parents b534eaa + 65081ce commit 791aa37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/c05/p09_read_binary_data_into_mutable_buffer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
>>> buf = read_into_buffer('sample.bin')
3535
>>> buf
3636
bytearray(b'Hello World')
37-
>>> buf[0:5] = b'Hallo'
37+
>>> buf[0:5] = b'Hello'
3838
>>> buf
39-
bytearray(b'Hallo World')
39+
bytearray(b'Hello World')
4040
>>> with open('newsample.bin', 'wb') as f:
4141
... f.write(buf)
4242
...

0 commit comments

Comments
 (0)