From b87510458e2c0734765114d86831bce40bc3c31a Mon Sep 17 00:00:00 2001 From: Harlow Ward Date: Mon, 2 Sep 2019 08:13:08 -0700 Subject: [PATCH] Fix example command indentation --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index af153c4..97463f0 100644 --- a/README.md +++ b/README.md @@ -349,15 +349,15 @@ There are example Produder and Consumer code in `/cmd` directory. These should h The examples run locally against [Kinesis Lite](https://github.com/mhart/kinesalite). - $ kinesalite & + $ kinesalite & Produce data to the stream: - $ cat cmd/producer/users.txt | go run cmd/producer/main.go --stream myStream + $ cat cmd/producer/users.txt | go run cmd/producer/main.go --stream myStream Consume data from the stream: - $ go run cmd/consumer/main.go --stream myStream + $ go run cmd/consumer/main.go --stream myStream ## Contributing