@@ -3135,7 +3135,7 @@ end subroutine ESMF_ParseDurString
3135
3135
#undef ESMF_METHOD
3136
3136
#define ESMF_METHOD "ESMF_TimeIntervalSetStr()"
3137
3137
! BOP
3138
- ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO format string
3138
+ ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO 8601 format string
3139
3139
! \label{API:TimeIntervalSetStr}
3140
3140
3141
3141
! !INTERFACE:
@@ -3151,8 +3151,8 @@ subroutine ESMF_TimeIntervalSetStr(timeinterval, timeIntervalString, rc)
3151
3151
!
3152
3152
!
3153
3153
! !DESCRIPTION:
3154
- ! Sets the value of the {\tt ESMF\_TimeInterval} using a user specified
3155
- ! string in ISO duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for information about the format. In ESMF's implementation the time values can have the following types:
3154
+ ! Sets the value of an {\tt ESMF\_TimeInterval} using a
3155
+ ! string in ISO 8601 duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for information about the format. In ESMF's implementation the time values can have the following types:
3156
3156
! \begin{description}
3157
3157
! \item[y] - the number of years expressed in up to a 64-bit integer
3158
3158
! \item[mm] - the number of months expressed in up to a 64-bit integer
@@ -3170,7 +3170,7 @@ subroutine ESMF_TimeIntervalSetStr(timeinterval, timeIntervalString, rc)
3170
3170
! \item[timeinterval]
3171
3171
! The object instance to initialize.
3172
3172
! \item[timeIntervalString]
3173
- ! ISO format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3173
+ ! ISO 8601 format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3174
3174
! \item[{[rc]}]
3175
3175
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
3176
3176
! \end{description}
@@ -3229,7 +3229,7 @@ end subroutine ESMF_TimeIntervalSetStr
3229
3229
#undef ESMF_METHOD
3230
3230
#define ESMF_METHOD "ESMF_TimeIntervalSetStrCal()"
3231
3231
! BOP
3232
- ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO format string and calendar
3232
+ ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO 8601 format string and calendar
3233
3233
3234
3234
! !INTERFACE:
3235
3235
! Private name; call using ESMF_TimeIntervalSet()
@@ -3245,8 +3245,8 @@ subroutine ESMF_TimeIntervalSetStrCal(timeinterval, calendar, &
3245
3245
!
3246
3246
!
3247
3247
! !DESCRIPTION:
3248
- ! Sets the value of the {\tt ESMF\_TimeInterval} using a user specified
3249
- ! string in ISO duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for
3248
+ ! Sets the value of an {\tt ESMF\_TimeInterval} using a
3249
+ ! string in ISO 8601 duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for
3250
3250
! information about the format. Also, see the description for the method
3251
3251
! {\tt ESMF\_TimeIntervalSetStr()}~\ref{API:TimeIntervalSetStr}
3252
3252
! for the specific types supported by ESMF for the values in the duration string.
@@ -3265,7 +3265,7 @@ subroutine ESMF_TimeIntervalSetStrCal(timeinterval, calendar, &
3265
3265
! it contains a calendar. Alternate to, and mutually exclusive with,
3266
3266
! calkindflag below. Primarily for specifying a custom calendar kind.
3267
3267
! \item[timeIntervalString]
3268
- ! ISO format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3268
+ ! ISO 8601 format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3269
3269
! \item[{[rc]}]
3270
3270
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
3271
3271
! \end{description}
@@ -3325,7 +3325,7 @@ end subroutine ESMF_TimeIntervalSetStrCal
3325
3325
#undef ESMF_METHOD
3326
3326
#define ESMF_METHOD "ESMF_TimeIntervalSetStrCalTyp()"
3327
3327
! BOP
3328
- ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO format string and calendar kind
3328
+ ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO 8601 format string and calendar kind
3329
3329
3330
3330
! !INTERFACE:
3331
3331
! Private name; call using ESMF_TimeIntervalSet()
@@ -3341,8 +3341,8 @@ subroutine ESMF_TimeIntervalSetStrCalTyp(timeinterval, calkindflag, &
3341
3341
!
3342
3342
!
3343
3343
! !DESCRIPTION:
3344
- ! Sets the value of the {\tt ESMF\_TimeInterval} using a user specified
3345
- ! string in ISO duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for
3344
+ ! Sets the value of an {\tt ESMF\_TimeInterval} using a
3345
+ ! string in ISO 8601 duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for
3346
3346
! information about the format. Also, see the description for the method
3347
3347
! {\tt ESMF\_TimeIntervalSetStr()}~\ref{API:TimeIntervalSetStr}
3348
3348
! for the specific types supported by ESMF for the values in the duration string.
@@ -3356,7 +3356,7 @@ subroutine ESMF_TimeIntervalSetStrCalTyp(timeinterval, calkindflag, &
3356
3356
! calendar above. More convenient way of specifying a built-in
3357
3357
! calendar kind.
3358
3358
! \item[timeIntervalString]
3359
- ! ISO format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3359
+ ! ISO 8601 format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3360
3360
! \item[{[rc]}]
3361
3361
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
3362
3362
! \end{description}
@@ -3414,7 +3414,7 @@ end subroutine ESMF_TimeIntervalSetStrCalTyp
3414
3414
#undef ESMF_METHOD
3415
3415
#define ESMF_METHOD "ESMF_TimeIntervalSetStrStart()"
3416
3416
! BOP
3417
- ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO format string and start time
3417
+ ! !IROUTINE: ESMF_TimeIntervalSet - Initialize or set a TimeInterval from an ISO 8601 format string and start time
3418
3418
3419
3419
! !INTERFACE:
3420
3420
! Private name; call using ESMF_TimeIntervalSet()
@@ -3430,8 +3430,8 @@ subroutine ESMF_TimeIntervalSetStrStart(timeinterval, startTime, &
3430
3430
!
3431
3431
!
3432
3432
! !DESCRIPTION:
3433
- ! Sets the value of the {\tt ESMF\_TimeInterval} using a user specified
3434
- ! string in ISO duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for
3433
+ ! Sets the value of an {\tt ESMF\_TimeInterval} using a
3434
+ ! string in ISO 8601 duration format P[y]Y[mm]M[d]DT[h]H[m]M[s]S. See ~\cite{ISO} and ~\cite{ISOnotes} for
3435
3435
! information about the format. Also, see the description for the method
3436
3436
! {\tt ESMF\_TimeIntervalSetStr()}~\ref{API:TimeIntervalSetStr}
3437
3437
! for the specific types supported by ESMF for the values in the duration string.
@@ -3446,7 +3446,7 @@ subroutine ESMF_TimeIntervalSetStrStart(timeinterval, startTime, &
3446
3446
! in time. If not set, and calendar also not set, calendar interval
3447
3447
! "floats" across all calendars and times.
3448
3448
! \item[timeIntervalString]
3449
- ! ISO format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3449
+ ! ISO 8601 format duration string (e.g. P[y]Y[mm]M[d]DT[h]H[m]M[s]S).
3450
3450
! \item[{[rc]}]
3451
3451
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
3452
3452
! \end{description}
0 commit comments