You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/12/09 18:21:43 UTC

[arrow-rs] branch master updated: Fix: fixes a broken link and some missing styling in the main arrow crate docs (#1013)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 2e46ede  Fix: fixes a broken link and some missing styling in the main arrow crate docs (#1013)
2e46ede is described below

commit 2e46edeef7bb25d05dbbe63052aad00c4ba02170
Author: Adam Gutglick <ad...@gmail.com>
AuthorDate: Thu Dec 9 20:18:49 2021 +0200

    Fix: fixes a broken link and some missing styling in the main arrow crate docs (#1013)
---
 arrow/src/lib.rs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arrow/src/lib.rs b/arrow/src/lib.rs
index 2c2590c..0609f8f 100644
--- a/arrow/src/lib.rs
+++ b/arrow/src/lib.rs
@@ -89,7 +89,7 @@
 //!
 //! ## Compute
 //!
-//! This crate offers many operations (called kernels) to operate on `Array`s, that you can find at [compute::kernels].
+//! This crate offers many operations (called kernels) to operate on [`Array`](array::Array)s, that you can find at [`Kernel`](compute::kernels).
 //! It has both vertical and horizontal operations, and some of them have an SIMD implementation.
 //!
 //! ## Status
@@ -118,9 +118,9 @@
 //!
 //! Finally, this crate implements some readers and writers to different formats:
 //!
-//! * json: [reader](json::reader::Reader)
-//! * csv: [reader](csv::reader::Reader) and [writer](csv::writer::Writer)
-//! * ipc: [reader](ipc::reader::StreamReader) and [writer](ipc::writer::FileWriter)
+//! * JSON: [`Reader`](json::reader::Reader)
+//! * CSV: [`Reader`](csv::reader::Reader) and [`Writer`](csv::writer::Writer)
+//! * IPC: [`Reader`](ipc::reader::StreamReader) and [`Writer`](ipc::writer::FileWriter)
 //!
 //! The parquet implementation is on a [separate crate](https://crates.io/crates/parquet)