File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
1
+ Copyright 2015-2016 CrowdRiff
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
Original file line number Diff line number Diff line change 1
1
Wredis
2
2
===
3
3
4
- [ ![ Build Status] ( https://travis-ci.org/crowdriff/wredis.svg?branch=master )] ( https://travis-ci.org/crowdriff/wredis )
4
+ [ ![ Build Status] ( https://travis-ci.org/crowdriff/wredis.svg?branch=master )] ( https://travis-ci.org/crowdriff/wredis ) [ ![ Go Report Card ] ( https://goreportcard.com/badge/github.com/crowdriff/wredis )] ( https://goreportcard.com/report/github.com/crowdriff/wredis )
5
5
6
6
Wredis is a wrapper around the [ redigo] ( https://github.com/garyburd/redigo ) ` redis.Pool ` and provides an easy-to-use API for [ Redis commands] ( http://redis.io/commands )
7
7
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ func (w *Wredis) Del(keys ...string) (int64, error) {
25
25
return w .ExecInt64 (del )
26
26
}
27
27
28
- // Exists checks for the existance of `key` in Redis. Note however,
28
+ // Exists checks for the existence of `key` in Redis. Note however,
29
29
// even though a variable number of keys can be passed to the EXISTS command
30
30
// since Redis 3.0.3, we will restrict this to a single key in order to
31
31
// be able to return an absolute response regarding existence.
You can’t perform that action at this time.
0 commit comments