mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 22:31:43 +00:00
Auto merge of #14577 - jsoref:spelling, r=lnicola
Spelling This PR corrects misspellings identified by the [check-spelling action](https://github.com/marketplace/actions/check-spelling). The misspellings have been reported at4699991040 (summary-12751355796)
The action reports that the changes in this PR would make it happy:4699991284 (summary-12751356293)
closes #14567
This commit is contained in:
commit
2400b36a2e
83 changed files with 137 additions and 136 deletions
|
@ -48,7 +48,7 @@ tracing-tree = "0.2.1"
|
|||
always-assert = "0.1.2"
|
||||
|
||||
# These dependencies are unused, but we pin them to a version here to restrict them for our transitive dependencies
|
||||
# so that we don't pull in duplicates of their depdendenceies like windows-sys and syn 1 vs 2
|
||||
# so that we don't pull in duplicates of their dependencies like windows-sys and syn 1 vs 2
|
||||
# these would pull in serde 2
|
||||
thiserror = "=1.0.39"
|
||||
serde_repr = "=0.1.11"
|
||||
|
|
|
@ -338,7 +338,7 @@ config_data! {
|
|||
inlayHints_closingBraceHints_minLines: usize = "25",
|
||||
/// Whether to show inlay type hints for return types of closures.
|
||||
inlayHints_closureReturnTypeHints_enable: ClosureReturnTypeHintsDef = "\"never\"",
|
||||
/// Closure notation in type and chaining inaly hints.
|
||||
/// Closure notation in type and chaining inlay hints.
|
||||
inlayHints_closureStyle: ClosureStyle = "\"impl_fn\"",
|
||||
/// Whether to show enum variant discriminant hints.
|
||||
inlayHints_discriminantHints_enable: DiscriminantHintsDef = "\"never\"",
|
||||
|
@ -488,7 +488,7 @@ config_data! {
|
|||
/// When enabled, rust-analyzer will emit special token types for operator tokens instead
|
||||
/// of the generic `operator` token type.
|
||||
semanticHighlighting_operator_specialization_enable: bool = "false",
|
||||
/// Use semantic tokens for punctuations.
|
||||
/// Use semantic tokens for punctuation.
|
||||
///
|
||||
/// When disabled, rust-analyzer will emit semantic tokens only for punctuation tokens when
|
||||
/// they are tagged with modifiers or have a special role.
|
||||
|
@ -496,7 +496,7 @@ config_data! {
|
|||
/// When enabled, rust-analyzer will emit a punctuation semantic token for the `!` of macro
|
||||
/// calls.
|
||||
semanticHighlighting_punctuation_separate_macro_bang: bool = "false",
|
||||
/// Use specialized semantic tokens for punctuations.
|
||||
/// Use specialized semantic tokens for punctuation.
|
||||
///
|
||||
/// When enabled, rust-analyzer will emit special token types for punctuation tokens instead
|
||||
/// of the generic `punctuation` token type.
|
||||
|
@ -1972,7 +1972,7 @@ fn get_field<T: DeserializeOwned>(
|
|||
alias: Option<&'static str>,
|
||||
default: &str,
|
||||
) -> T {
|
||||
// XXX: check alias first, to work-around the VS Code where it pre-fills the
|
||||
// XXX: check alias first, to work around the VS Code where it pre-fills the
|
||||
// defaults instead of sending an empty object.
|
||||
alias
|
||||
.into_iter()
|
||||
|
@ -2204,8 +2204,8 @@ fn field_props(field: &str, ty: &str, doc: &[&str], default: &str) -> serde_json
|
|||
"enumDescriptions": [
|
||||
"Always show adjustment hints as prefix (`*expr`).",
|
||||
"Always show adjustment hints as postfix (`expr.*`).",
|
||||
"Show prefix or postfix depending on which uses less parenthesis, prefering prefix.",
|
||||
"Show prefix or postfix depending on which uses less parenthesis, prefering postfix.",
|
||||
"Show prefix or postfix depending on which uses less parenthesis, preferring prefix.",
|
||||
"Show prefix or postfix depending on which uses less parenthesis, preferring postfix.",
|
||||
]
|
||||
},
|
||||
"CargoFeaturesDef" => set! {
|
||||
|
|
|
@ -288,7 +288,7 @@ impl GlobalState {
|
|||
{
|
||||
let raw_database = self.analysis_host.raw_database();
|
||||
// FIXME: ideally we should only trigger a workspace fetch for non-library changes
|
||||
// but somethings going wrong with the source root business when we add a new local
|
||||
// but something's going wrong with the source root business when we add a new local
|
||||
// crate see https://github.com/rust-lang/rust-analyzer/issues/13029
|
||||
if let Some(path) = workspace_structure_change {
|
||||
self.fetch_workspaces_queue
|
||||
|
|
|
@ -36,7 +36,7 @@ pub fn main_loop(config: Config, connection: Connection) -> Result<()> {
|
|||
// temporary bumped. This optimization backfires in our case: each time the
|
||||
// `main_loop` schedules a task to run on a threadpool, the worker threads
|
||||
// gets a higher priority, and (on a machine with fewer cores) displaces the
|
||||
// main loop! We work-around this by marking the main loop as a
|
||||
// main loop! We work around this by marking the main loop as a
|
||||
// higher-priority thread.
|
||||
//
|
||||
// https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue