From 887fc5ef82827f735be57677ea4f6f20f5853304 Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Thu, 6 Jul 2023 16:07:38 -0700 Subject: [PATCH] Typo fix. PiperOrigin-RevId: 546117632 --- runsc/cmd/umount_unsafe.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runsc/cmd/umount_unsafe.go b/runsc/cmd/umount_unsafe.go index bd24464d1..d47987043 100644 --- a/runsc/cmd/umount_unsafe.go +++ b/runsc/cmd/umount_unsafe.go @@ -39,12 +39,12 @@ func (*Umount) Name() string { // Synopsis implements subcommands.Command.Synopsis. func (*Umount) Synopsis() string { - return "umount the specified directory lazily when one byte is read from synd-fd" + return "umount the specified directory lazily when one byte is read from sync-fd" } // Usage implements subcommands.Command.Usage. func (*Umount) Usage() string { - return `umount --synd-fd=FD ` + return `umount --sync-fd=FD ` } // SetFlags implements subcommands.Command.SetFlags.