Merge pull request #671 from mattkelly/fix-exampleclient-grammar

Fix grammar in ExampleClient
This commit is contained in:
Vladimir Mihailenco 2017-11-26 11:07:54 +02:00 committed by GitHub
commit b879d4e0b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -96,14 +96,14 @@ func ExampleClient() {
val2, err := client.Get("key2").Result()
if err == redis.Nil {
fmt.Println("key2 does not exists")
fmt.Println("key2 does not exist")
} else if err != nil {
panic(err)
} else {
fmt.Println("key2", val2)
}
// Output: key value
// key2 does not exists
// key2 does not exist
}
func ExampleClient_Set() {