Skip to content

Commit a7e5c4d

Browse files
authored
add ',' on line 366
1 parent 35995f0 commit a7e5c4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/numpy-advanced.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ no longer points to the start of the buffer, but somewhere in the middle::
363363

364364
b = a[1:3, 1:3] # This view does not start at the beginning
365365
offset = b.__array_interface__['data'][0] - a.__array_interface__['data'][0]
366-
print('Offset:' offset, 'bytes') # Offset: 48 bytes
366+
print('Offset:', offset, 'bytes') # Offset: 48 bytes
367367

368368
.. image:: img/numpy-advanced/02_views.svg
369369

0 commit comments

Comments
 (0)