Skip to content

Commit

Permalink
Fix typo in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandreyc committed Feb 15, 2024
1 parent 25ad192 commit 5be1d61
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rust/src/objects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
//! onto Arrow record batches as returned by the C API ADBC drivers. The latter is
//! implemented in [ImportedCatalogCollection][crate::driver_manager::ImportedCatalogCollection].
//!
//! | Trait | Simple Rust-based | Arrow RecordBatch view |
//! |------------------------------|----------------------|------------------------|
//! | [DatabaseCatalogCollection] | [SimpleSchemaEntry] | [ImportedCatalogCollection][crate::driver_manager::ImportedCatalogCollection] |
//! | [DatabaseCatalogEntry] | [SimpleCatalogEntry] | [ImportedCatalogEntry][crate::driver_manager::ImportedCatalogEntry] |
//! | [DatabaseSchemaEntry] | [SimpleSchemaEntry] | [ImportedSchemaEntry][crate::driver_manager::ImportedSchemaEntry] |
//! | [DatabaseTableEntry] | [SimpleTableEntry] | [ImportedTableEntry][crate::driver_manager::ImportedTableEntry] |
//! | Trait | Simple Rust-based | Arrow RecordBatch view |
//! |------------------------------|---------------------------|------------------------|
//! | [DatabaseCatalogCollection] | [SimpleCatalogCollection] | [ImportedCatalogCollection][crate::driver_manager::ImportedCatalogCollection] |
//! | [DatabaseCatalogEntry] | [SimpleCatalogEntry] | [ImportedCatalogEntry][crate::driver_manager::ImportedCatalogEntry] |
//! | [DatabaseSchemaEntry] | [SimpleSchemaEntry] | [ImportedSchemaEntry][crate::driver_manager::ImportedSchemaEntry] |
//! | [DatabaseTableEntry] | [SimpleTableEntry] | [ImportedTableEntry][crate::driver_manager::ImportedTableEntry] |
//!
//! There are owned and reference variations of columns, table constraints,
//! and foreign key usage. Each have a `borrow()` method to transform a owned
Expand Down

0 comments on commit 5be1d61

Please sign in to comment.