We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ffc55 commit d08e6ecCopy full SHA for d08e6ec
src/lib.rs
@@ -98,7 +98,7 @@
98
//! must provide a `Span` when constructing one:
99
//!
100
//! Previously:
101
-//! ```rust
+//! ```text
102
//! # use sqlparser::ast::Ident;
103
//! Ident {
104
//! value: "name".into(),
@@ -108,12 +108,12 @@
108
//! Now
109
//! ```rust
110
111
-//! # use sqlparser::ast::Span;
+//! # use sqlparser::tokenizer::Span;
112
113
114
//! quote_style: None,
115
//! span: Span::empty(),
116
-//! }
+//! };
117
//! ```
118
//! #### Misc.
119
//! - [`TokenWithLocation`] stores a full `Span`, rather than just a source location.
0 commit comments