Skip to content

Commit 0c7d5c6

Browse files
committed
fix typos & formatting
1 parent 9e31705 commit 0c7d5c6

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/tools/rust-analyzer/crates/ide-assists/src/utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -927,12 +927,12 @@ pub(crate) fn tt_from_syntax(node: SyntaxNode) -> Vec<NodeOrToken<ast::TokenTree
927927

928928
match token.kind() {
929929
T!['('] | T!['{'] | T!['['] => {
930-
// Found an opening delimeter, start a new sub token tree
930+
// Found an opening delimiter, start a new sub token tree
931931
tt_stack.push((Some(token.kind()), vec![]));
932932
}
933933
T![')'] | T!['}'] | T![']'] => {
934934
// Closing a subtree
935-
let (delimiter, tt) = tt_stack.pop().expect("unbalanced delimeters");
935+
let (delimiter, tt) = tt_stack.pop().expect("unbalanced delimiters");
936936
let (_, parent_tt) = tt_stack
937937
.last_mut()
938938
.expect("parent token tree was closed before it was completed");

src/tools/rust-analyzer/crates/syntax/src/parsing.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ pub(crate) fn parse_text(text: &str, edition: parser::Edition) -> (GreenNode, Ve
1818
(node, errors)
1919
}
2020

21-
pub(crate) fn parse_text_at(text: &str, entry: parser::TopEntryPoint, edition: parser::Edition) -> (GreenNode, Vec<SyntaxError>) {
21+
pub(crate) fn parse_text_at(
22+
text: &str,
23+
entry: parser::TopEntryPoint,
24+
edition: parser::Edition,
25+
) -> (GreenNode, Vec<SyntaxError>) {
2226
let _p = tracing::span!(tracing::Level::INFO, "parse_text_at").entered();
2327
let lexed = parser::LexedStr::new(text);
2428
let parser_input = lexed.to_input();

0 commit comments

Comments
 (0)