Browse code

daemon/daemon_linux.go: Fix a minor typo

Signed-off-by: Jitang Lei <leijitang@outlook.com>

Jitang Lei authored on 2024/12/03 09:59:00
Showing 1 changed files
... ...
@@ -92,7 +92,7 @@ func (daemon *Daemon) cleanupMounts(cfg *config.Config) error {
92 92
 	}
93 93
 
94 94
 	// `info.Root` here is the root mountpoint of the passed in path (`daemon.root`).
95
-	// The ony cases that need to be cleaned up is when the daemon has performed a
95
+	// The only cases that need to be cleaned up is when the daemon has performed a
96 96
 	//   `mount --bind /daemon/root /daemon/root && mount --make-shared /daemon/root`
97 97
 	// This is only done when the daemon is started up and `/daemon/root` is not
98 98
 	// already on a shared mountpoint.