Skip to content

Commit b078534

Browse files
committed
Fix typo in save_h5fdata
1 parent 96ba9d1 commit b078534

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/datautils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ end
102102

103103
function BlockDenseArray(full_tensor::Matrix; indices=1:size(full_tensor,1))
104104
@assert size(full_tensor,1) == size(full_tensor,2)
105-
return BlockDenseMatrix(full_tensor[indice,indices], indices)
105+
return BlockDenseMatrix(full_tensor[indices,indices], indices)
106106
end
107107

108108
struct FrictionData{A}
@@ -124,4 +124,4 @@ end
124124
# end
125125

126126

127-
end
127+
end

0 commit comments

Comments
 (0)