File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ analysis, feel free to use this project as a base.
61
61
62
62
## Preserves Syntax Round Trip
63
63
64
- This crate allows users to recover the original SQL text (with normalized
65
- whitespace and keyword capitalization), which is useful for tools that
66
- analyze and manipulate SQL.
64
+ This crate allows users to recover the original SQL text (with comments removed,
65
+ normalized whitespace and keyword capitalization), which is useful for tools
66
+ that analyze and manipulate SQL.
67
67
68
- This means that other than whitespace and the capitalization of keywords, the
69
- following should hold true for all SQL:
68
+ This means that other than comments, whitespace and the capitalization of
69
+ keywords, the following should hold true for all SQL:
70
70
71
71
``` rust
72
72
// Parse SQL
Original file line number Diff line number Diff line change 41
41
//!
42
42
//! # Creating SQL text from AST
43
43
//!
44
- //! This crate allows users to recover the original SQL text (with normalized
45
- //! whitespace and identifier capitalization), which is useful for tools that
46
- //! analyze and manipulate SQL.
44
+ //! This crate allows users to recover the original SQL text (with comments
45
+ //! removed, normalized whitespace and identifier capitalization), which is
46
+ //! useful for tools that analyze and manipulate SQL.
47
47
//!
48
48
//! ```
49
49
//! # use sqlparser::dialect::GenericDialect;
You can’t perform that action at this time.
0 commit comments