Skip to content

Commit

Permalink
clean up documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
iamatypeofwalrus committed Apr 18, 2018
1 parent 2d4cfc8 commit 4f407f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ NAME:
A simple CLI that takes input from STDIN and sends it to an AWS Kinesis stream
USAGE:
cat your_records.json | kpr --stream YOUR_STREAM --region us-west-2
cat your_records.json | kpr --stream YOUR_STREAM_NAME --region us-west-2
GLOBAL OPTIONS:
--stream NAME, -s NAME Kinesis stream NAME
--region REGION, -r REGION AWS REGION (default: "us-east-1")
--region REGION, -r REGION Amazon Web Service REGION (default: "us-east-1")
--help, -h show this help message
```
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func main() {
app := cli.NewApp()
app.Name = "kpr"
app.Usage = "Kinesis Put Records\n\n A simple CLI that takes input from STDIN and sends it to an AWS Kinesis stream"
app.UsageText = "cat your_records.json | kpr --stream YOUR_STREAM --region us-west-2"
app.UsageText = "cat your_records.json | kpr --stream YOUR_STREAM_NAME --region us-west-2"
app.Version = "0.1.0"
app.HideHelp = true
app.HideVersion = true
Expand All @@ -28,7 +28,7 @@ func main() {
},
cli.StringFlag{
Name: "region, r",
Usage: "AWS `REGION`",
Usage: "Amazon Web Service `REGION`",
Value: "us-east-1",
},
cli.BoolFlag{
Expand Down

0 comments on commit 4f407f7

Please sign in to comment.