Skip to content

Commit e0da691

Browse files
milancurcicjvdp1
andauthored
Update doc/specs/stdlib_logger.md
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
1 parent 75291b5 commit e0da691

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

doc/specs/stdlib_logger.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -314,25 +314,25 @@ Pure subroutine
314314
#### Example
315315

316316
```fortran
317-
module example_mod
318-
use stdlib_logger
319-
...
320-
type(logger_type) :: logger
317+
module example_mod
318+
use stdlib_logger
319+
320+
type(logger_type) :: logger
321321
contains
322-
...
323-
subroutine example_sub(unit, ...)
322+
323+
subroutine example_sub(unit, ...)
324324
integer, intent(in) :: unit
325-
...
325+
326326
integer, allocatable :: log_units(:)
327-
...
327+
328328
call logger % configuration( log_units=log_units )
329329
if ( size(log_units) == 0 ) then
330330
call add_logger_unit( unit )
331331
end if
332-
..
333-
end subroutine example_sub
334-
...
335-
end module example_mod
332+
333+
end subroutine example_sub
334+
335+
end module example_mod
336336
```
337337

338338
### `configure` - configure the logging process

0 commit comments

Comments
 (0)