fix(typo): dependant -> dependent (#4540)

This commit is contained in:
Charlie Tonneslan
2026-03-24 10:54:31 -04:00
committed by GitHub
parent 5a74bf0aab
commit 0ffd303db6
2 changed files with 3 additions and 3 deletions

View File

@@ -526,7 +526,7 @@ impl MonitorHandler {
}, },
}; };
// Notifying `Future`s is not dependant on the lifetime of the runner, // Notifying `Future`s is not dependent on the lifetime of the runner,
// because they can outlive it. // because they can outlive it.
if let Some(runner) = runner.upgrade() { if let Some(runner) = runner.upgrade() {
if let Some(details) = details { if let Some(details) = details {
@@ -761,7 +761,7 @@ impl MonitorPermissionFuture {
wasm_bindgen_futures::spawn_local(async move { wasm_bindgen_futures::spawn_local(async move {
match future.await { match future.await {
Ok(details) => { Ok(details) => {
// Notifying `Future`s is not dependant on the lifetime of the runner, because // Notifying `Future`s is not dependent on the lifetime of the runner, because
// they can outlive it. // they can outlive it.
notifier.notify(Ok(())); notifier.notify(Ok(()));

View File

@@ -29,7 +29,7 @@ use crate::platform_impl;
/// ///
/// To wake up an `EventLoop` from a another thread, see the [`EventLoopProxy`] docs. /// To wake up an `EventLoop` from a another thread, see the [`EventLoopProxy`] docs.
/// ///
/// Note that this cannot be shared across threads (due to platform-dependant logic /// Note that this cannot be shared across threads (due to platform-dependent logic
/// forbidding it), as such it is neither [`Send`] nor [`Sync`]. If you need cross-thread access, /// forbidding it), as such it is neither [`Send`] nor [`Sync`]. If you need cross-thread access,
/// the [`Window`] created from this _can_ be sent to an other thread, and the /// the [`Window`] created from this _can_ be sent to an other thread, and the
/// [`EventLoopProxy`] allows you to wake up an `EventLoop` from another thread. /// [`EventLoopProxy`] allows you to wake up an `EventLoop` from another thread.