Skip to content

Commit e80b508

Browse files
committed
spacing
1 parent 504d90d commit e80b508

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/stdlib_linalg.fypp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,15 @@ module stdlib_linalg
241241
!! real(sp) :: a(3,3), d
242242
!! type(linalg_state_type) :: state
243243
!! a = reshape([1, 2, 3, 4, 5, 6, 7, 8, 9], [3, 3])
244-
!!
244+
!!
245+
!! ! ...
245246
!! d = det(a,err=state)
246247
!! if (state%ok()) then
247248
!! print *, 'Success! det=',d
248249
!! else
249250
!! print *, state%print()
250251
!! endif
251-
!!
252+
!! ! ...
252253
!!```
253254
!!
254255
#:for rk,rt in RC_KINDS_TYPES
@@ -275,10 +276,12 @@ module stdlib_linalg
275276
!!
276277
!!```fortran
277278
!!
279+
!! ! ...
278280
!! real(sp) :: matrix(3,3), d
279281
!! matrix = reshape([1, 2, 3, 4, 5, 6, 7, 8, 9], [3, 3])
280282
!! d = .det.matrix
281-
!!
283+
!! ! ...
284+
!!
282285
!!```
283286
!
284287
#:for rk,rt in RC_KINDS_TYPES

0 commit comments

Comments
 (0)