Skip to content

Commit

Permalink
minor changes to doxygen comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mlee03 committed Apr 19, 2021
1 parent 1295f22 commit 9dd6e12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions time_manager/time_manager.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1672,7 +1672,7 @@ end function get_ticks_per_second

!> @brief Gets the date for different calendar types.
!! The added optional argument old_method allows user to choose either the new or old version
!! of get_date_gregorian
!! of get_date_gregorian. The variable old_method is only useful if the calendar type is Gregorian
subroutine get_date(time, year, month, day, hour, minute, second, tick, err_msg, old_method)

! Given a time, computes the corresponding date given the selected calendar
Expand Down Expand Up @@ -2048,7 +2048,7 @@ end subroutine get_date_no_leap

!> @brief Sets days for different calendar types.
!! The added optional argument old_method allows user to choose either the new or old version
!! of set_date_gregorian
!! of set_date_gregorian. The variable old_method is only useful if the calendar type is Gregorian
function set_date_private(year, month, day, hour, minute, second, tick, Time_out, err_msg, old_method)

! Given a date, computes the corresponding time given the selected
Expand Down Expand Up @@ -2100,7 +2100,7 @@ end function set_date_private

!> @brief Calls set_date_private to set days for different calendar types.
!! The added optional argument old_method allows user to choose either the new or old version
!! of set_date_gregorian
!! of set_date_gregorian. The variable old_method is only useful if the calendar type is Gregorian
function set_date_i(year, month, day, hour, minute, second, tick, err_msg, old_method)
type(time_type) :: set_date_i
integer, intent(in) :: day, month, year
Expand Down Expand Up @@ -2134,7 +2134,7 @@ end function set_date_i

!> @brief Calls set_date_private for different calendar types when given a string input.
!! The added optional argument old_method allows user to choose either the new or old version
!! of set_date_gregorian
!! of set_date_gregorian. The variable old_method is only useful if the calendar type is Gregorian
function set_date_c(string, zero_year_warning, err_msg, allow_rounding, old_method)

! Examples of acceptable forms of string:
Expand Down

0 comments on commit 9dd6e12

Please sign in to comment.