Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Jan 10, 2024
1 parent e78613d commit a88b39f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions t/primitive/Ufunc.t
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ use My::Test::Primitive;

diag "These tests should be in Ufunc, not Primitive";

# provide indepdent copies of test data.
# provide independent copies of test data.
sub X { PDL->pdl( [ [ 5, 4, 3 ], [ 2, 3, 1.5 ] ] ) }

ok( tapprox( X->average(), PDL->pdl( [ 4, 2.16666 ] ) ), "average" );
ok( tapprox( X->sumover(), PDL->pdl( [ 12, 6.5 ] ) ), "sumover" );
ok( tapprox( X->prodover(), PDL->pdl( [ 60, 9 ] ) ), "prodover" );


# provide indepdent copies of test data.
# provide independent copies of test data.
sub IM {
PDL->new(
[
Expand Down
2 changes: 1 addition & 1 deletion t/primitive/matmult.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use PDL::LiteF;
use Test::Lib;
use My::Test::Primitive;

# provide indepdent copies of test data.
# provide independent copies of test data.
sub IM {
PDL->new(
[
Expand Down
2 changes: 1 addition & 1 deletion t/primitive/stats.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use PDL::LiteF;
use Test::Lib;
use My::Test::Primitive;

# provide indepdent copies of test data.
# provide independent copies of test data.
sub IM {
PDL->new(
[
Expand Down

0 comments on commit a88b39f

Please sign in to comment.