Skip to content

Commit 62c81d6

Browse files
committed
Auto merge of rust-lang#14672 - whentojump:patch-1, r=lnicola
minor: fix typos
2 parents 237ffa3 + c533ac3 commit 62c81d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/hir/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//! applied. So, the relation between syntax and HIR is many-to-one.
77
//!
88
//! HIR is the public API of the all of the compiler logic above syntax trees.
9-
//! It is written in "OO" style. Each type is self contained (as in, it knows it's
9+
//! It is written in "OO" style. Each type is self contained (as in, it knows its
1010
//! parents and full context). It should be "clean code".
1111
//!
1212
//! `hir_*` crates are the implementation of the compiler logic.

docs/user/manual.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ Try **rust-analyzer: Show RA Version** in VS Code (using **Command Palette** fea
589589
If the date is more than a week ago, it's better to update rust-analyzer version.
590590

591591
The next thing to check would be panic messages in rust-analyzer's log.
592-
Log messages are printed to stderr, in VS Code you can see then in the `Output > Rust Analyzer Language Server` tab of the panel.
592+
Log messages are printed to stderr, in VS Code you can see them in the `Output > Rust Analyzer Language Server` tab of the panel.
593593
To see more logs, set the `RA_LOG=info` environment variable, this can be done either by setting the environment variable manually or by using `rust-analyzer.server.extraEnv`, note that both of these approaches require the server to be restarted.
594594

595595
To fully capture LSP messages between the editor and the server, set `"rust-analyzer.trace.server": "verbose"` config and check

0 commit comments

Comments
 (0)