Browse Source

Merge pull request #1445 from andriikushch/v2

fix typo and link in examples README
Vlad Gorodetsky 6 years ago
parent
commit
372e31826b
2 changed files with 2 additions and 2 deletions
  1. 1 1
      examples/README.md
  2. 1 1
      examples/sasl_scram_client/README.md

+ 1 - 1
examples/README.md

@@ -9,4 +9,4 @@ In these examples, we use `github.com/Shopify/sarama` as import path. We do this
 [http_server](./http_server) is a simple HTTP server uses both the sync producer to produce data as part of the request handling cycle, as well as the async producer to maintain an access log. It also uses the [mocks subpackage](https://godoc.org/github.com/Shopify/sarama/mocks) to test both.
 
 #### SASL SCRAM Authentication
-[sasl_scram_authentication](./sasl_scram_authentication) is an example of how to authenticate to a Kafka cluster using SASL SCRAM-SHA-256 or SCRAM-SHA-512 mechanisms.
+[sasl_scram_client](./sasl_scram_client) is an example of how to authenticate to a Kafka cluster using SASL SCRAM-SHA-256 or SCRAM-SHA-512 mechanisms.

+ 1 - 1
examples/sasl_scram_client/README.md

@@ -1,4 +1,4 @@
-Example commande line:
+Example command line:
 
 ```./sasl_scram_client -brokers localhost:9094 -username foo -passwd a_password -topic topic_name -tls -algorithm [sha256|sha512]```