File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -662,15 +662,15 @@ It is an `intent(in)` argument. It will precede `message` with an
662662#### Example
663663
664664``` fortran
665- module example_mod
666- use stdlib_logger
667- ...
668- real, allocatable :: a(:)
669- ...
670- type(logger_type) :: logger
665+ module example_mod
666+ use stdlib_logger
667+
668+ real, allocatable :: a(:)
669+
670+ type(logger_type) :: logger
671671 contains
672- ...
673- subroutine example_sub( selection )
672+
673+ subroutine example_sub( selection )
674674 integer, intent(out) :: selection
675675 integer :: stat
676676 write(*,'(a)') "Enter an integer to select a widget"
@@ -681,9 +681,9 @@ It is an `intent(in)` argument. It will precede `message` with an
681681 module = 'EXAMPLE_MOD', &
682682 procedure = 'EXAMPLE_SUB', &
683683 prefix = `INFO' )
684- end subroutine example_sub
685- ...
686- end module example_mod
684+ end subroutine example_sub
685+
686+ end module example_mod
687687```
688688
689689### ` log_text_error ` - send a message to ` self % log_units ` describing an error
You can’t perform that action at this time.
0 commit comments