Skip to content

Commit 48f1b49

Browse files
authored
Fix typos
1 parent dc10748 commit 48f1b49

File tree

1 file changed

+2
-2
lines changed
  • src/tools/rust-analyzer/crates/rust-analyzer/src

1 file changed

+2
-2
lines changed

src/tools/rust-analyzer/crates/rust-analyzer/src/config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2634,13 +2634,13 @@ fn schema(fields: &[SchemaField]) -> serde_json::Value {
26342634
.iter()
26352635
.map(|(field, ty, doc, default)| {
26362636
let name = field.replace('_', ".");
2637-
let catagory = name.find('.').map(|end| {
2637+
let category = name.find('.').map(|end| {
26382638
String::from(&name[..end])
26392639
}).unwrap_or("general".into());
26402640
let name = format!("rust-analyzer.{name}");
26412641
let props = field_props(field, ty, doc, default);
26422642
serde_json::json!({
2643-
"title": catagory,
2643+
"title": category,
26442644
"properties": {
26452645
name: props
26462646
}

0 commit comments

Comments
 (0)