From 0b438c4cff26455acf1269a3c1d7f3f1fbd7730f Mon Sep 17 00:00:00 2001 From: Simeon Schaub Date: Thu, 20 Jan 2022 17:37:10 -0500 Subject: [PATCH] fix whitespace --- NEWS.md | 2 +- base/tuple.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 3200ee577541c..c96cbf0021537 100644 --- a/NEWS.md +++ b/NEWS.md @@ -79,7 +79,7 @@ New library functions * `setcpuaffinity(cmd, cpus)` can be used to set CPU affinity of sub-processes. ([#42469]) * `diskstat(path=pwd())` can be used to return statistics about the disk. ([#42248]) * `Base.split_rest` for splitting the tail of a collection from an optional iteration - state in two, with the latter being of length `n`. ([#42902]) + state in two, with the latter being of length `n`. ([#42902]) New library features -------------------- diff --git a/base/tuple.jl b/base/tuple.jl index 40655f3bc8a66..73429e9dad7b1 100644 --- a/base/tuple.jl +++ b/base/tuple.jl @@ -113,7 +113,7 @@ in assignments](@ref destructuring-assignment) in final position, like `a, b... !!! compat "Julia 1.6" `Base.rest` requires at least Julia 1.6. - See also: [`first`](@ref first), [`Iterators.rest`](@ref), [`Base.split_rest`](@ref). +See also: [`first`](@ref first), [`Iterators.rest`](@ref), [`Base.split_rest`](@ref). # Examples ```jldoctest