summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-11-01 19:04:49 +0100
committerJakob Unterwurzacher2016-11-01 19:04:49 +0100
commitf4c367381ea4884a9b460e073a7809665031a88c (patch)
tree41ae1c70f134fc3ced3f5d6e019cc537722bce79 /main.go
parentb527e205e231a7f0d5486b7593ba6b47cf09706d (diff)
main: fix comments that reference "-f"
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index c5fc3d7..7c39778 100644
--- a/main.go
+++ b/main.go
@@ -124,7 +124,7 @@ func main() {
// Parse all command-line options (i.e. arguments starting with "-")
// into "args". Path arguments are parsed below.
args := parseCliOpts()
- // Fork a child into the background if "-f" is not set AND we are mounting
+ // Fork a child into the background if "-fg" is not set AND we are mounting
// a filesystem. The child will do all the work.
if !args.fg && flagSet.NArg() == 2 {
ret := forkChild()