Skip to content

Commit a669617

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

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
@@ -513,15 +513,15 @@ Subroutine
513513
#### Example
514514

515515
```fortran
516-
module example_mod
517-
use stdlib_logger
518-
...
519-
real, allocatable :: a(:)
520-
...
521-
type(logger_type) :: logger
516+
module example_mod
517+
use stdlib_logger
518+
519+
real, allocatable :: a(:)
520+
521+
type(logger_type) :: logger
522522
contains
523-
...
524-
subroutine example_sub( selection )
523+
524+
subroutine example_sub( selection )
525525
integer, intent(out) :: selection
526526
character(128) :: errmsg, message
527527
integer :: stat
@@ -531,10 +531,10 @@ Subroutine
531531
"The user selected ", selection
532532
call logger % log_information( message, &
533533
module = 'EXAMPLE_MOD', procedure = 'EXAMPLE_SUB' )
534-
...
535-
end subroutine example_sub
536-
...
537-
end module example_mod
534+
535+
end subroutine example_sub
536+
537+
end module example_mod
538538
```
539539

540540
### `log_io_error` - Write the string `message` to `self % log_units`

0 commit comments

Comments
 (0)