mcst-linux-kernel/patches-2024.06.26/lxd-3.0.0/0019-Fix-typo-in-help-of-lx...

24 lines
848 B
Diff

From 1e372f83606df7db92dc5151ba5be5dee97ab9a4 Mon Sep 17 00:00:00 2001
From: KATOH Yasufumi <karma@jazz.email.ne.jp>
Date: Thu, 5 Apr 2018 15:52:27 +0900
Subject: Fix typo in help of "lxc network"
Signed-off-by: KATOH Yasufumi <karma@jazz.email.ne.jp>
---
lxc/network.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lxc/network.go b/lxc/network.go
index c58bc2b0..0386ed12 100644
--- a/lxc/network.go
+++ b/lxc/network.go
@@ -30,7 +30,7 @@ func (c *cmdNetwork) Command() *cobra.Command {
cmd.Use = i18n.G("network")
cmd.Short = i18n.G("Manage and attach containers to networks")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
- `Manage an attach containers to networks`))
+ `Manage and attach containers to networks`))
// Attach
networkAttachCmd := cmdNetworkAttach{global: c.global, network: c}