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 @@ -314,25 +314,25 @@ Pure subroutine
314314#### Example
315315
316316``` fortran
317- module example_mod
318- use stdlib_logger
319- ...
320- type(logger_type) :: logger
317+ module example_mod
318+ use stdlib_logger
319+
320+ type(logger_type) :: logger
321321 contains
322- ...
323- subroutine example_sub(unit, ...)
322+
323+ subroutine example_sub(unit, ...)
324324 integer, intent(in) :: unit
325- ...
325+
326326 integer, allocatable :: log_units(:)
327- ...
327+
328328 call logger % configuration( log_units=log_units )
329329 if ( size(log_units) == 0 ) then
330330 call add_logger_unit( unit )
331331 end if
332- ..
333- end subroutine example_sub
334- ...
335- end module example_mod
332+
333+ end subroutine example_sub
334+
335+ end module example_mod
336336```
337337
338338### ` configure ` - configure the logging process
You can’t perform that action at this time.
0 commit comments