Skip to content

Commit bdc0ed4

Browse files
ghbrownjvdp1
andauthored
Fixed spacing in specs docs
Co-authored-by: Jeremie Vandenplas <[email protected]>
1 parent 45e9458 commit bdc0ed4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/specs/stdlib_linalg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ program demo_outer_product
200200
use stdlib_linalg, only: outer_product
201201
implicit none
202202
real, allocatable :: A(:,:), u(:), v(:)
203-
u = [1. ,2. ,3. ]
203+
u = [1., 2., 3. ]
204204
v = [3., 4.]
205205
A = outer_product(u,v)
206206
!A = reshape([3., 6., 9., 4., 8., 12.], [3,2])
207207
end program demo_outer_product
208-
```
208+
```

0 commit comments

Comments
 (0)