From 5bc4777be9c818ab6b86448423a7ba29820e71b8 Mon Sep 17 00:00:00 2001
From: Xiuming Chen <cxmcc@users.noreply.github.com>
Date: Sun, 21 Jun 2020 21:40:54 -0700
Subject: [PATCH] chore: Fix typo in reverse-proxy subcommand help message
 (#3513)

---
 modules/caddyhttp/reverseproxy/command.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/caddyhttp/reverseproxy/command.go b/modules/caddyhttp/reverseproxy/command.go
index a5939a2ad..4a6739e54 100644
--- a/modules/caddyhttp/reverseproxy/command.go
+++ b/modules/caddyhttp/reverseproxy/command.go
@@ -55,7 +55,7 @@ from its original incoming value to the address of the upstream. (Otherwise, by
 default, all incoming headers are passed through unmodified.)
 `,
 		Flags: func() *flag.FlagSet {
-			fs := flag.NewFlagSet("file-server", flag.ExitOnError)
+			fs := flag.NewFlagSet("reverse-proxy", flag.ExitOnError)
 			fs.String("from", "localhost", "Address on which to receive traffic")
 			fs.String("to", "", "Upstream address to which to to proxy traffic")
 			fs.Bool("change-host-header", false, "Set upstream Host header to address of upstream")