Skip to content

Commit

Permalink
Reduce typo count (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Jan 23, 2025
1 parent ce05b99 commit b7964b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/ext_event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<()>,
Expand Down

0 comments on commit b7964b2

Please sign in to comment.