Skip to content

Commit abc83c7

Browse files
authored
Apply suggestions from code review
1 parent 7998a9c commit abc83c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/stdlib_logger.f90

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ pure subroutine configure( self, add_blank_line, indent, max_width, &
453453
!! 4. `time_stamp` is a logical flag with `.true.` implying that the output
454454
!! will have a time stamp, and `.false.` implying that there will be no
455455
!! time stamp. `time_stamp` has a startup value of `.true.`.
456-
!!([Specification])(../page/specs/stdlib_logger.html#configure-configure-the-logging-process))
456+
!!([Specification](../page/specs/stdlib_logger.html#configure-configure-the-logging-process))
457457
!!##### Example
458458
!!
459459
!! program main
@@ -932,7 +932,7 @@ subroutine log_message( self, message, module, procedure, prefix )
932932

933933
!! Writes the string `message` to the `self % log_units` with optional
934934
!! additional text.
935-
!!([Specification])(../page/specs/stdlib_logger.html#log_message-write-the-string-message-to-self-log_units))
935+
!!([Specification](../page/specs/stdlib_logger.html#log_message-write-the-string-message-to-self-log_units))
936936
!!
937937
!!##### Behavior
938938
!!
@@ -1041,7 +1041,7 @@ subroutine log_text_error( self, line, column, summary, filename, &
10411041

10421042
!! Sends a message to `self % log_units` describing an error found
10431043
!! in a line of text.
1044-
!!([Specification])(../page/specs/stdlib_logger.html#log_text_error-send-a-message-to-self-log_units-describing-an-error))
1044+
!!([Specification](../page/specs/stdlib_logger.html#log_text_error-send-a-message-to-self-log_units-describing-an-error))
10451045

10461046
!!##### Behavior
10471047
!!
@@ -1226,7 +1226,7 @@ end function log_units_assigned
12261226

12271227
subroutine log_warning( self, message, module, procedure )
12281228
!! Writes the string `message` to `self % log_units` with optional additional text.
1229-
!!([Specification])(../page/specs/stdlib_logger.html#log_warning-write-the-string-message-to-log_units)
1229+
!!([Specification](../page/specs/stdlib_logger.html#log_warning-write-the-string-message-to-log_units))
12301230

12311231
!!##### Behavior
12321232
!!
@@ -1284,7 +1284,7 @@ subroutine remove_log_unit( self, unit, close_unit, stat )
12841284
!! has the value `success`. If closing the `unit` fails, then if `stat` is
12851285
!! present it has the value `close_failure`, otherwise processing stops
12861286
!! with an informative message.
1287-
!!([Specification])(../page/specs/stdlib_logger.html#remove_log_unit-remove-unit-from-self-log_units))
1287+
!!([Specification](../page/specs/stdlib_logger.html#remove_log_unit-remove-unit-from-self-log_units))
12881288

12891289
class(logger_type), intent(inout) :: self
12901290
!! The logger variable whose unit is to be removed

0 commit comments

Comments
 (0)