Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/src/lib.rs')
| -rw-r--r-- | crates/syntax/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/syntax/src/lib.rs b/crates/syntax/src/lib.rs index 21f1ea5f91..a3c19f71fb 100644 --- a/crates/syntax/src/lib.rs +++ b/crates/syntax/src/lib.rs @@ -54,11 +54,11 @@ pub use crate::{ }; pub use parser::{Edition, SyntaxKind, T}; pub use rowan::{ - api::Preorder, Direction, GreenNode, NodeOrToken, SyntaxText, TextRange, TextSize, - TokenAtOffset, WalkEvent, + Direction, GreenNode, NodeOrToken, SyntaxText, TextRange, TextSize, TokenAtOffset, WalkEvent, + api::Preorder, }; pub use rustc_literal_escaper as unescape; -pub use smol_str::{format_smolstr, SmolStr, SmolStrBuilder, ToSmolStr}; +pub use smol_str::{SmolStr, SmolStrBuilder, ToSmolStr, format_smolstr}; /// `Parse` is the result of the parsing: a syntax tree and a collection of /// errors. |