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
662
662
#### Example
663
663
664
664
``` 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
671
671
contains
672
- ...
673
- subroutine example_sub( selection )
672
+
673
+ subroutine example_sub( selection )
674
674
integer, intent(out) :: selection
675
675
integer :: stat
676
676
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
681
681
module = 'EXAMPLE_MOD', &
682
682
procedure = 'EXAMPLE_SUB', &
683
683
prefix = `INFO' )
684
- end subroutine example_sub
685
- ...
686
- end module example_mod
684
+ end subroutine example_sub
685
+
686
+ end module example_mod
687
687
```
688
688
689
689
### ` 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