1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix spelling errors.
* beggining -> beginning
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://sourceforge.net/p/pdl/patches/83/
--- a/HDF5/Dataset.pm
+++ b/HDF5/Dataset.pm
@@ -365,7 +365,7 @@ The I<get> method can also be used to ob
of the dataset array. For example, if $dataset is three dimensional with dimensions
(20,100,90) then we could do:
- $start=pdl([0,0,0]); # We begin the slice at the very beggining
+ $start=pdl([0,0,0]); # We begin the slice at the very beginning
$end=pdl([19,0,0]); # We take the first vector of the array,
$stride=pdl([2,1,1]); # taking only every two values of the vector
|