From b7964b2f42e42e1155ca77b85aca104a387493c2 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 24 Jan 2025 01:49:19 +0700 Subject: [PATCH] Reduce typo count (#742) --- CHANGELOG.md | 2 +- CONTRIBUTING.md | 2 +- src/context.rs | 2 +- src/ext_event.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c11db24..1282f852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -83,7 +83,7 @@ - Rename Tabs to Tab for clarity in the `tab` argument [#593](https://github.com/lapce/floem/pull/593) - Make add and remove class on ViewId public [#601](https://github.com/lapce/floem/pull/601) - rename window scale action to be consistent [#639](https://github.com/lapce/floem/pull/639) -- change on_key_* fns to provide acess to the modifiers [#642](https://github.com/lapce/floem/pull/642) +- change on_key_* fns to provide access to the modifiers [#642](https://github.com/lapce/floem/pull/642) - event pass through [#667](https://github.com/lapce/floem/pull/667) ### Bug Fixes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1f86b92f..734635fd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,4 +10,4 @@ Filing bugs with clear, reproducible steps is a great way to contribute as well. It's not a good library if there isn't good documentation. So, all contributions to the documentation are very appreciated! -If you would like a conversation with the devlopers of Floem, you can join in the #floem channel on this [Discord](https://discord.gg/RB6cRYerXX). +If you would like a conversation with the developers of Floem, you can join in the #floem channel on this [Discord](https://discord.gg/RB6cRYerXX). diff --git a/src/context.rs b/src/context.rs index 22962d3d..78c234c9 100644 --- a/src/context.rs +++ b/src/context.rs @@ -167,7 +167,7 @@ impl EventCx<'_> { } if event.is_pointer() && pointer_event_consumed == PointerEventConsumed::Yes { // if a child's pointer event was consumed because pointer-events: auto - // we don't pass the pionter event the next child + // we don't pass the pointer event the next child // also, we mark pointer_event_consumed to be yes // so that it will be bublled up the parent view_pointer_event_consumed = PointerEventConsumed::Yes; diff --git a/src/ext_event.rs b/src/ext_event.rs index 5c36539c..6138c44f 100644 --- a/src/ext_event.rs +++ b/src/ext_event.rs @@ -15,7 +15,7 @@ use crate::{ #[derive(Debug)] /// # SAFETY /// -/// **DO NOT USE THIS** trigger except for when using with `create_ext_action` or when you guarentee that +/// **DO NOT USE THIS** trigger except for when using with `create_ext_action` or when you guarantee that /// the signal is never used from a different thread than it was created on. pub struct ExtSendTrigger { signal: RwSignal<()>,