Skip to content

Commit

Permalink
Fix Latex syntax by adding missing backslashes.
Browse files Browse the repository at this point in the history
  • Loading branch information
theurich committed Jan 8, 2025
1 parent 9420fc9 commit c691f5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Infrastructure/TimeMgr/interface/ESMF_Time.F90
Original file line number Diff line number Diff line change
Expand Up @@ -667,10 +667,10 @@ subroutine ESMF_TimeGet(time, keywordEnforcer, &
! precision time units of an hour or smaller neither bind nor are bound by other time
! units of an hour or smaller (either integer or double precision). For example,
! with the same time setting as above (2:00 am on February 2, 2004),
! {\tt ESMF\_TimeGet(dd=day, h_r8=hours_r8, s=seconds)} would return
! {\tt day = 2}, {\tt hours_r8 = 2.0}, {\tt seconds = 7200}, and
! {\tt ESMF\_TimeGet(dd=day, h=hours, s_r8=seconds_r8)} would return
! {\tt day = 2}, {\tt hours = 2}, {\tt seconds_r8 = 7200.0}.
! {\tt ESMF\_TimeGet(dd=day, h\_r8=hours\_r8, s=seconds)} would return
! {\tt day = 2}, {\tt hours\_r8 = 2.0}, {\tt seconds = 7200}, and
! {\tt ESMF\_TimeGet(dd=day, h=hours, s\_r8=seconds\_r8)} would return
! {\tt day = 2}, {\tt hours = 2}, {\tt seconds\_r8 = 7200.0}.
!
! For {\tt timeString}, {\tt timeStringISOFrac}, {\tt dayOfWeek},
! {\tt midMonth}, {\tt dayOfYear}, {\tt dayOfYear\_intvl}, and
Expand Down

0 comments on commit c691f5e

Please sign in to comment.