From aaa1590b564ad102832edd948ea8dbe462e24914 Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Tue, 2 Jul 2024 13:17:17 +0200 Subject: [PATCH] docs: fix `with_executor` method description (#2834) --- crates/libcontainer/src/container/builder.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/libcontainer/src/container/builder.rs b/crates/libcontainer/src/container/builder.rs index b83a335d..5aa1d39c 100644 --- a/crates/libcontainer/src/container/builder.rs +++ b/crates/libcontainer/src/container/builder.rs @@ -238,8 +238,8 @@ impl ContainerBuilder { self.preserve_fds = preserved_fds; self } - /// Sets the number of additional file descriptors which will be passed into - /// the container process. + + /// Sets the function that actually runs on the container init process. /// # Example /// /// ```no_run