Skip to content

Commit 1d98ee0

Browse files
bbb651Supreeeme
authored andcommitted
Fix typos
1 parent 180efb0 commit 1d98ee0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/server/dispatch.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ impl<C: XConnection> Dispatch<s_tablet::zwp_tablet_pad_ring_v2::ZwpTabletPadRing
11341134
ring.client.destroy();
11351135
state.objects.remove(*key);
11361136
}
1137-
other => warn!("unhandled tablet pad ring requst: {other:?}"),
1137+
other => warn!("unhandled tablet pad ring request: {other:?}"),
11381138
}
11391139
}
11401140
}
@@ -1163,7 +1163,7 @@ impl<C: XConnection> Dispatch<s_tablet::zwp_tablet_pad_strip_v2::ZwpTabletPadStr
11631163
strip.client.destroy();
11641164
state.objects.remove(*key);
11651165
}
1166-
other => warn!("unhandled tablet pad strip requst: {other:?}"),
1166+
other => warn!("unhandled tablet pad strip request: {other:?}"),
11671167
}
11681168
}
11691169
}

src/server/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ impl<C: XConnection> ServerState<C> {
538538

539539
let activation_state = ActivationState::bind(&clientside.global_list, &qh)
540540
.inspect_err(|e| {
541-
warn!("Could not bind xdg activation ({e:?}). Windows might not recive focus depending on compositor focus stealing policy.")
541+
warn!("Could not bind xdg activation ({e:?}). Windows might not receive focus depending on compositor focus stealing policy.")
542542
})
543543
.ok();
544544

src/server/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1800,7 +1800,7 @@ fn negative_output_xdg_position_update_offset() {
18001800
let mut first = false;
18011801
for event in std::mem::take(&mut *xdg_output.data.events.lock().unwrap()) {
18021802
if let zxdg_output_v1::Event::LogicalPosition { x, y } = event {
1803-
// Testwl sends a logical positon event when the output is first created
1803+
// Testwl sends a logical position event when the output is first created
18041804
// We are interested in the second one generated by satellite
18051805
if !first {
18061806
first = true;

src/xstate/selection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl Selection {
127127
warn!("Failed to write selection data: {e:?}");
128128
} else if incr {
129129
debug!(
130-
"recieved some incr data for {}",
130+
"received some incr data for {}",
131131
get_atom_name(&self.connection, target)
132132
);
133133
pending.push(PendingSelectionData {

0 commit comments

Comments
 (0)