Update comments after the renaming done in PR #105

This commit is contained in:
Nickolay Ponomarev 2019-07-01 04:45:08 +03:00
parent cdba43682f
commit 7d4b488336
8 changed files with 26 additions and 26 deletions

View file

@ -14,14 +14,14 @@
//!
//! Example code:
//!
//! This crate provides an ANSI:SQL 2011 lexer and parser that can parsed SQL into an Abstract
//! Syntax Tree (AST).
//! This crate provides an ANSI:SQL 2011 lexer and parser that can parse SQL
//! into an Abstract Syntax Tree (AST).
//!
//! ```
//! use sqlparser::dialect::GenericDialect;
//! use sqlparser::parser::Parser;
//!
//! let dialect = GenericDialect {}; // or AnsiSqlDialect
//! let dialect = GenericDialect {}; // or AnsiDialect
//!
//! let sql = "SELECT a, b, 123, myfunc(b) \
//! FROM table_1 \