Skip to content

Commit daee787

Browse files
committed
fix typo
1 parent 4c741c0 commit daee787

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/fspy/src/unix/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ pub(crate) async fn spawn_impl(mut command: Command) -> Result<TrackedChild, Spa
153153
let arenas = arenas.collect::<Vec<_>>();
154154

155155
// Lock the ipc channel after the child has exited.
156-
// We are not interested in path accesses from decendants after the main child has exited.
156+
// We are not interested in path accesses from descendants after the main child has exited.
157157
let ipc_receiver_lock_guard = OwnedReceiverLockGuard::lock_async(ipc_receiver).await?;
158158
let path_accesses = PathAccessIterable { arenas, ipc_receiver_lock_guard };
159159

crates/fspy/src/windows/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ pub(crate) async fn spawn_impl(command: Command) -> Result<TrackedChild, SpawnEr
139139
wait_handle: tokio::spawn(async move {
140140
let status = child.wait().await?;
141141
// Lock the ipc channel after the child has exited.
142-
// We are not interested in path accesses from decendants after the main child has exited.
142+
// We are not interested in path accesses from descendants after the main child has exited.
143143
let ipc_receiver_lock_guard = OwnedReceiverLockGuard::lock_async(receiver).await?;
144144
let path_accesses = PathAccessIterable { ipc_receiver_lock_guard };
145145

0 commit comments

Comments
 (0)