We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02edec9 commit 981ec2eCopy full SHA for 981ec2e
ch05construction/09patterns.ipynb
@@ -422,8 +422,8 @@
422
" self.range = self.end - self.start\n",
423
" self.step = self.range / self.count\n",
424
" # 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",
+ " # as an argument and will throw an exception \n",
+ " # if a view of an array is passed as an argument\n",
427
" self.times = self.data[:, 0].copy()\n",
428
" self.values = self.data[:, 1].copy()\n",
429
" self.plot_data = [self.times, self.values]\n",
0 commit comments