Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
takaebato committed Feb 12, 2024
1 parent 2398816 commit a713321
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sql-insight/src/extractor/crud_table_extractor.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A Extractor that extracts CRUD tables from SQL queries.
//!
//! See [`extract_crud_tables`](crate::extract_crud_tables) as the entry point for extracting CRUD tables from SQL.
//! See [`extract_crud_tables`](crate::extract_crud_tables()) as the entry point for extracting CRUD tables from SQL.
use std::fmt;
use std::ops::ControlFlow;
Expand Down
2 changes: 1 addition & 1 deletion sql-insight/src/extractor/table_extractor.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A Extractor that extracts tables from SQL queries.
//!
//! See [`extract_tables`](crate::extract_tables) as the entry point for extracting tables from SQL.
//! See [`extract_tables`](crate::extract_tables()) as the entry point for extracting tables from SQL.
use core::fmt;
use std::ops::ControlFlow;
Expand Down
2 changes: 1 addition & 1 deletion sql-insight/src/formatter.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A Formatter that formats SQL into a standardized format.
//!
//! See [`format`](crate::format) as the entry point for formatting SQL.
//! See [`format`](crate::format()) as the entry point for formatting SQL.
use crate::error::Error;
use sqlparser::dialect::Dialect;
Expand Down
8 changes: 4 additions & 4 deletions sql-insight/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
//!
//! ## Main Functionalities
//!
//! - **SQL Formatting**: Format SQL queries into a standardized format. See the [`formatter`](crate::formatter) module for more information.
//! - **SQL Normalization**: Normalize SQL queries by abstracting literals. See the [`normalizer`](crate::normalizer) module for more information.
//! - **Table Extraction**: Extract tables within SQL queries. See the [`table_extractor`](crate::table_extractor) module for more information.
//! - **CRUD Table Extraction**: Extract CRUD tables from SQL queries. See the [`crud_table_extractor`](crate::crud_table_extractor) module for more information.
//! - **SQL Formatting**: Format SQL queries into a standardized format. See the [`formatter`] module for more information.
//! - **SQL Normalization**: Normalize SQL queries by abstracting literals. See the [`normalizer`] module for more information.
//! - **Table Extraction**: Extract tables within SQL queries. See the [`table_extractor`] module for more information.
//! - **CRUD Table Extraction**: Extract CRUD tables from SQL queries. See the [`crud_table_extractor`] module for more information.
//!
//! ## Quick Start
//!
Expand Down
2 changes: 1 addition & 1 deletion sql-insight/src/normalizer.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A Normalizer that converts SQL queries to a canonical form.
//!
//! See [`normalize`](crate::normalize) as the entry point for normalizing SQL.
//! See [`normalize`](crate::normalize()) as the entry point for normalizing SQL.
use std::ops::ControlFlow;

Expand Down

0 comments on commit a713321

Please sign in to comment.