Skip to content

Commit

Permalink
fix: docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
roeap committed Nov 10, 2023
1 parent b49170b commit 2a2bd42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/deltalake-core/src/kernel/expressions/scalars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::{
use crate::kernel::schema::{DataType, PrimitiveType};

/// A single value, which can be null. Used for representing literal values
/// in [Expressions][crate::expressions::Expression].
/// in [Expressions][crate::kernel::expressions::Expression].
#[derive(Debug, Clone, PartialEq)]
pub enum Scalar {
/// A 32-bit integer.
Expand Down
4 changes: 2 additions & 2 deletions crates/deltalake-sql/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ impl fmt::Display for Statement {
}
}

/// Delta Lake SQL Parser based on [`sqlparser`]
/// Delta Lake SQL Parser based on [`sqlparser`](https://crates.io/crates/sqlparser)
///
/// This parser handles Delta Lake specific statements, delegating to
/// [`DFParser`](datafusion_sql::parser::DFParser) for other SQL statements.
/// [`DFParser`]for other SQL statements.
pub struct DeltaParser<'a> {
sql: &'a str,
parser: Parser<'a>,
Expand Down

0 comments on commit 2a2bd42

Please sign in to comment.