Skip to content

Commit ff296ec

Browse files
committed
adjust doc
1 parent b6dd60c commit ff296ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ atlas tf clu2adv -f in.tf -o out.tf
3434

3535
If you want to overwrite the output file if it exists, or even use the same output file as the input file, use the `--replaceOutput true` or the `-r` flag.
3636

37-
If you want to keep the plugin running and update the output file as you change the input file, use the `--watch true` or the `-w` flag. You can have input and output files open in an editor and see easily how changes to the input file affect the output file.
37+
You can use the `--watch true` or the `-w` flag to keep the plugin running and watching for changes in the input file. You can have input and output files open in an editor and see easily how changes to the input file affect the output file.
3838

3939
### Limitations
4040

internal/cli/clu2adv/clu2adv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ func Builder() *cobra.Command {
2424
cmd.Flags().StringVarP(&o.output, "output", "o", "", "output file")
2525
_ = cmd.MarkFlagRequired("output")
2626
cmd.Flags().BoolVarP(&o.replaceOutput, "replaceOutput", "r", false, "replace output file if exists")
27-
cmd.Flags().BoolVarP(&o.watch, "watch", "w", false, "keeps the command running and watches the input file for changes")
27+
cmd.Flags().BoolVarP(&o.watch, "watch", "w", false, "keeps the plugin running and watches the input file for changes")
2828
return cmd
2929
}

0 commit comments

Comments
 (0)