You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The help on a function in the Dates package throws up a meaningless entry:
julia> using Dates
help?> date
dateformat"
datetime2julian
datetime2rata
datetime2unix
help?> dateformat"
search: DateFormat dateformat"" @dateformat_str ISODateFormat
Couldn't find dateformat"
Perhaps you meant DateFormat or @dateformat_str
No documentation found.
Binding dateformat" does not exist.
Tab completion at the help?> prompt works, in that datefo expands to dateformat"
The text was updated successfully, but these errors were encountered:
I don't fully understand the stated expected result. Are you wanting the help system to accept a single trailing quote instead of requiring the closing quote? Or wanting the help system to close the quote itself?
help?> dateformat"
search: DateFormat dateformat"" @dateformat_str ISODateFormat
Couldn't find dateformat"
Perhaps you meant DateFormat or @dateformat_str
No documentation found.
Binding dateformat" does not exist.
help?> dateformat""
dateformat"Y-m-d H:M:S"
Create a DateFormat object. Similar to DateFormat("Y-m-d H:M:S") but creates
the DateFormat object once during macro expansion.
See DateFormat for details about format specifiers.
The help on a function in the Dates package throws up a meaningless entry:
Tab completion at the
help?>
prompt works, in thatdatefo
expands todateformat"
The text was updated successfully, but these errors were encountered: