From 22cc7a5dc6699f42de1e2cfaec7ad1caf7daa4f1 Mon Sep 17 00:00:00 2001 From: mbeltagy Date: Tue, 6 Sep 2016 16:19:20 +0200 Subject: [PATCH] Removed confusing array of types in readcsv help (#18308) * Removed confusing array of types in readcsv * Restored brackets to `T` in readcsv doc and added clarifying text * genstdlib rst output for docstring change. --- base/docs/helpdb/Base.jl | 2 +- doc/stdlib/io-network.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base/docs/helpdb/Base.jl b/base/docs/helpdb/Base.jl index 54a1be788d9b9..a51c0d9f046d7 100644 --- a/base/docs/helpdb/Base.jl +++ b/base/docs/helpdb/Base.jl @@ -2000,7 +2000,7 @@ hessfact! """ readcsv(source, [T::Type]; options...) -Equivalent to `readdlm` with `delim` set to comma. +Equivalent to `readdlm` with `delim` set to comma, and type optionally defined by `T`. """ readcsv diff --git a/doc/stdlib/io-network.rst b/doc/stdlib/io-network.rst index bbbbc4c48d527..a87b89ac24640 100644 --- a/doc/stdlib/io-network.rst +++ b/doc/stdlib/io-network.rst @@ -667,7 +667,7 @@ Text I/O .. Docstring generated from Julia source - Equivalent to ``readdlm`` with ``delim`` set to comma. + Equivalent to ``readdlm`` with ``delim`` set to comma, and type optionally defined by ``T``\ . .. function:: writecsv(filename, A; opts)