Skip to content
Snippets Groups Projects
Verified Commit b4bf685f authored by Denis Smirnov's avatar Denis Smirnov
Browse files

doc: fix spelling

parent de3cfc77
No related branches found
No related tags found
1 merge request!1414sbroad import
......@@ -5,7 +5,7 @@ use crate::executor::ir::ExecutionPlan;
use crate::frontend::sql::ast::AbstractSyntaxTree;
use crate::ir::Plan;
/// Compile an SQL query to IR plan.
/// Compiles an SQL query to IR plan.
#[allow(dead_code)]
pub fn sql_to_ir(input: &str) -> Plan {
let metadata = &MetadataMock::new();
......@@ -14,7 +14,7 @@ pub fn sql_to_ir(input: &str) -> Plan {
plan
}
/// Compile and transform an SQL query to a new SQL.
/// Compiles and transforms an SQL query to a new SQL.
#[allow(dead_code)]
pub fn sql_to_sql(input: &str, f_transform: &dyn Fn(&mut Plan)) -> String {
let mut plan = sql_to_ir(input);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment