Skip to content

Commit

Permalink
Fix: fixes a broken link and some missing styling in the main arrow c…
Browse files Browse the repository at this point in the history
…rate docs (#1013)
  • Loading branch information
AdamGS authored and alamb committed Dec 9, 2021
1 parent a92672e commit ade65e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arrow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit ade65e7

Please sign in to comment.