From 5b61e1a387283f88a6017717a913902662f8b4a3 Mon Sep 17 00:00:00 2001 From: Amaan Cheval Date: Sat, 1 Aug 2015 19:39:23 +0530 Subject: [PATCH] Fixed a misleading comment --- numpy/numpy.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpy/numpy.ipynb b/numpy/numpy.ipynb index 394943c..e0894cd 100644 --- a/numpy/numpy.ipynb +++ b/numpy/numpy.ipynb @@ -401,7 +401,7 @@ } ], "source": [ - "# Set last five values of e to zero\n", + "# Set values of e from index 5 onwards to 0\n", "e[5:] = 0\n", "print(e)" ]