From 847a950e47679bd2eaf91e4cd25349de54917ed6 Mon Sep 17 00:00:00 2001 From: Michael Hatherly Date: Fri, 23 Dec 2016 23:04:17 +0200 Subject: [PATCH] Fix doc signatures for zeros/ones https://github.com/JuliaLang/julia/pull/19635 merged two docstrings for each of `zeros` and `ones` in a single docstring each. This changes the signatures in the stdlib file to reflect that change. --- doc/src/stdlib/arrays.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/src/stdlib/arrays.md b/doc/src/stdlib/arrays.md index da1ada67b662d..7e699a3f5f119 100644 --- a/doc/src/stdlib/arrays.md +++ b/doc/src/stdlib/arrays.md @@ -25,10 +25,8 @@ Base.LinAlg.checksquare ```@docs Core.Array Base.getindex(::Type, ::Any...) -Base.zeros(::Any, ::Any) -Base.zeros(::Any) -Base.ones(::Any, ::Any) -Base.ones(::Any) +Base.zeros +Base.ones Base.BitArray Base.trues Base.falses