Skip to content

Work around linkcheck errors in docs #22201

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* [Punctuation](@ref)
* [Sorting and Related Functions](@ref)
* [Package Manager Functions](@ref)
* [Dates and Time](@ref)
* [Dates and Time](@ref stdlib-dates)
* [Iteration utilities](@ref)
* [Unit Testing](@ref)
* [C Interface](@ref)
Expand Down
4 changes: 2 additions & 2 deletions doc/src/manual/dates.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ julia> round(DateTime(2016, 8, 6, 20, 15), Dates.Day)
Unlike the numeric [`round()`](@ref) method, which breaks ties toward the even number by default,
the [`TimeType`](@ref)[`round()`](@ref) method uses the `RoundNearestTiesUp` rounding mode. (It's
difficult to guess what breaking ties to nearest "even" [`TimeType`](@ref) would entail.) Further
details on the available `RoundingMode` s can be found in the [API reference](../stdlib/dates.md).
details on the available `RoundingMode` s can be found in the [API reference](@ref stdlib-dates).

Rounding should generally behave as expected, but there are a few cases in which the expected
behaviour is not obvious.
Expand Down Expand Up @@ -626,5 +626,5 @@ will result in the months field having an odd value. Because both months and yea
an irregular number of days, whether rounding to an even number of days will result in an even
value in the days field is uncertain.

See the [API reference](../stdlib/dates.md) for additional information
See the [API reference](@ref stdlib-dates) for additional information
on methods exported from the `Dates` module.
2 changes: 1 addition & 1 deletion doc/src/stdlib/dates.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Dates and Time
# [Dates and Time](@id stdlib-dates)

## Dates and Time Types

Expand Down
2 changes: 1 addition & 1 deletion doc/src/stdlib/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* [Punctuation](@ref)
* [Sorting and Related Functions](@ref)
* [Package Manager Functions](@ref)
* [Dates and Time](@ref)
* [Dates and Time](@ref stdlib-dates)
* [Iteration utilities](@ref)
* [Unit Testing](@ref)
* [C Interface](@ref)
Expand Down