From 9782907cabfc42c3bed9cce7de719f510636ddb3 Mon Sep 17 00:00:00 2001 From: Kenta Sato Date: Wed, 15 Aug 2018 17:04:58 +0900 Subject: [PATCH] remove redundant text in a docstring (#28663) (cherry picked from commit 4e098f1717169cfc1340dbeaf99f25fcb8ea0227) --- base/strings/io.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/strings/io.jl b/base/strings/io.jl index 4df79c223ac697..1584b529beadab 100644 --- a/base/strings/io.jl +++ b/base/strings/io.jl @@ -223,7 +223,7 @@ IOBuffer(s::SubString{String}) = IOBuffer(view(unsafe_wrap(Vector{UInt8}, s.stri Join an array of `strings` into a single string, inserting the given delimiter between adjacent strings. If `last` is given, it will be used instead of `delim` between the last two strings. If `io` is given, the result is written to `io` rather than returned as -as a `String`. For example, +as a `String`. # Examples ```jldoctest