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.
if let Some(runner) = runner.upgrade() {
if let Some(details) = details {
@@ -761,7 +761,7 @@ impl MonitorPermissionFuture {
wasm_bindgen_futures::spawn_local(async move {
match future.await {
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.
notifier.notify(Ok(()));