File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff 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 `
You can’t perform that action at this time.
0 commit comments