Skip to content

Commit 80cb0b3

Browse files
authored
fix memory example in usage (#39)
1 parent ea271e8 commit 80cb0b3

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
@@ -132,7 +132,7 @@ Usage:
132132
133133
Examples:
134134
ec2-instance-selector --vcpus 4 --region us-east-2 --availability-zones us-east-2b
135-
ec2-instance-selector --memory-min 4096 --memory-max 8192 --vcpus-min 4 --vcpus-max 8 --region us-east-2
135+
ec2-instance-selector --memory-min 4 --memory-max 8 --vcpus-min 4 --vcpus-max 8 --region us-east-2
136136
137137
Filter Flags:
138138
--allow-list string List of allowed instance types to select from w/ regex syntax (Example: m[3-5]\.*)

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func main() {
101101
Filtering allows you to select all the instance types that match your application requirements.
102102
Full docs can be found at github.com/aws/amazon-` + binName
103103
examples := fmt.Sprintf(`%s --vcpus 4 --region us-east-2 --availability-zones us-east-2b
104-
%s --memory-min 4096 --memory-max 8192 --vcpus-min 4 --vcpus-max 8 --region us-east-2`, binName, binName)
104+
%s --memory-min 4 --memory-max 8 --vcpus-min 4 --vcpus-max 8 --region us-east-2`, binName, binName)
105105

106106
runFunc := func(cmd *cobra.Command, args []string) {}
107107
cli := commandline.New(binName, shortUsage, longUsage, examples, runFunc)

0 commit comments

Comments
 (0)