Skip to content

Commit f7ab13f

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

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

doc/specs/stdlib_logger.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)