Skip to content

Commit

Permalink
Fix typos and formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
theurich committed Jul 24, 2024
1 parent f1e0667 commit 07b59b1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/Infrastructure/Array/interface/ESMF_ArrayHa.F90
Original file line number Diff line number Diff line change
Expand Up @@ -576,12 +576,12 @@ subroutine ESMF_ArrayLog(array, keywordEnforcer, prefix, logMsgFlag, deepFlag, r
integer, intent(out), optional :: rc
!
! !DESCRIPTION:
! Write information about {\tt Array} to the ESMF default Log.
! Write information about {\tt array} to the ESMF default Log.
!
! The arguments are:
! \begin{description}
! \item[array]
! {\tt ESMF\_Array} object logged.
! The {\tt ESMF\_Array} object logged.
! \item [{[prefix]}]
! String to prefix the log message. Default is no prefix.
! \item [{[logMsgFlag]}]
Expand All @@ -608,7 +608,7 @@ subroutine ESMF_ArrayLog(array, keywordEnforcer, prefix, logMsgFlag, deepFlag, r
! Check init status of arguments
ESMF_INIT_CHECK_DEEP(ESMF_ArrayGetInit, array, rc)

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down
2 changes: 1 addition & 1 deletion src/Infrastructure/Config/src/ESMF_Config.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3184,7 +3184,7 @@ subroutine ESMF_ConfigLog(config, keywordEnforcer, raw, prefix, logMsgFlag, &
localrc = ESMF_RC_NOT_IMPL
if (present(rc)) rc = ESMF_RC_NOT_IMPL

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down
2 changes: 1 addition & 1 deletion src/Infrastructure/DistGrid/interface/ESMF_DistGrid.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3996,7 +3996,7 @@ subroutine ESMF_DistGridLog(distgrid, keywordEnforcer, prefix, logMsgFlag, deepF
! Check init status of arguments
ESMF_INIT_CHECK_DEEP(ESMF_DistGridGetInit, distgrid, rc)

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down
14 changes: 7 additions & 7 deletions src/Infrastructure/VM/interface/ESMF_VM.F90
Original file line number Diff line number Diff line change
Expand Up @@ -5869,7 +5869,7 @@ subroutine ESMF_VMLog(vm, keywordEnforcer, prefix, logMsgFlag, rc)
localrc = ESMF_RC_NOT_IMPL
if (present(rc)) rc = ESMF_RC_NOT_IMPL

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down Expand Up @@ -5922,7 +5922,7 @@ subroutine ESMF_VMLogBacktrace(prefix, logMsgFlag, rc)
localrc = ESMF_RC_NOT_IMPL
if (present(rc)) rc = ESMF_RC_NOT_IMPL

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down Expand Up @@ -5975,7 +5975,7 @@ subroutine ESMF_VMLogCurrentGarbageInfo(prefix, logMsgFlag, rc)
localrc = ESMF_RC_NOT_IMPL
if (present(rc)) rc = ESMF_RC_NOT_IMPL

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down Expand Up @@ -6028,7 +6028,7 @@ subroutine ESMF_VMLogGarbageInfo(prefix, logMsgFlag, rc)
localrc = ESMF_RC_NOT_IMPL
if (present(rc)) rc = ESMF_RC_NOT_IMPL

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down Expand Up @@ -6085,7 +6085,7 @@ subroutine ESMF_VMLogMemInfo(prefix, logMsgFlag, log, rc)
localrc = ESMF_RC_NOT_IMPL
if (present(rc)) rc = ESMF_RC_NOT_IMPL

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down Expand Up @@ -6138,7 +6138,7 @@ subroutine ESMF_VMLogSystem(prefix, logMsgFlag, rc)
localrc = ESMF_RC_NOT_IMPL
if (present(rc)) rc = ESMF_RC_NOT_IMPL

! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag

Expand Down Expand Up @@ -11293,7 +11293,7 @@ subroutine ESMF_PointerLog(ptr, prefix, logMsgFlag, rc)
integer, intent(out), optional :: rc
type(ESMF_LogMsg_Flag) :: logMsg
if (present(rc)) rc = ESMF_RC_NOT_IMPL
! deal with optionl logMsgFlag
! deal with optional logMsgFlag
logMsg = ESMF_LOGMSG_INFO ! default
if (present(logMsgFlag)) logMsg = logMsgFlag
call c_pointerlog(ptr, prefix, logMsg)
Expand Down

0 comments on commit 07b59b1

Please sign in to comment.