Skip to content

Commit 89f98ef

Browse files
milancurcicivan-pi
andauthored
Update src/stdlib_linalg_outer_product.fypp
Co-authored-by: Ivan Pribec <ivan.pribec@gmail.com>
1 parent 64016f4 commit 89f98ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_linalg_outer_product.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ contains
1111
${t1}$, intent(in) :: u(:), v(:)
1212
${t1}$ :: res(size(u),size(v))
1313
integer :: col
14-
do col=1,size(v)
14+
do col = 1, size(v)
1515
res(:,col) = v(col) * u
1616
end do
1717
end function outer_product_${t1[0]}$${k1}$

0 commit comments

Comments
 (0)