Skip to content

Commit 981ec2e

Browse files
committed
Correct comment of views throwing exceptions in lombscarge
1 parent 02edec9 commit 981ec2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ch05construction/09patterns.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@
422422
" self.range = self.end - self.start\n",
423423
" self.step = self.range / self.count\n",
424424
" # create separate arrays as some algorithms require an array\n",
425-
" # as an argument and will throw an exception a view of an array\n",
426-
" # is passed as an argument\n",
425+
" # as an argument and will throw an exception \n",
426+
" # if a view of an array is passed as an argument\n",
427427
" self.times = self.data[:, 0].copy()\n",
428428
" self.values = self.data[:, 1].copy()\n",
429429
" self.plot_data = [self.times, self.values]\n",

0 commit comments

Comments
 (0)