Skip to content

Commit ebe849a

Browse files
authored
02-numpy.md: Fix punctuation (#838)
* Update 02-numpy.md Line 279- put a period outside the quotation marks and added a space before starting a new sentence.
1 parent a662095 commit ebe849a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/02-numpy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ print(data[0:4, 0:10])
276276
{: .output}
277277
278278
The [slice]({{ page.root }}/reference/#slice) `0:4` means, "Start at index 0 and go up to, but not
279-
including, index 4."Again, the up-to-but-not-including takes a bit of getting used to, but the
279+
including, index 4". Again, the up-to-but-not-including takes a bit of getting used to, but the
280280
rule is that the difference between the upper and lower bounds is the number of values in the slice.
281281
282282
We don't have to start slices at 0:

0 commit comments

Comments
 (0)