Skip to content

Commit 500e6bc

Browse files
committed
Add License, fix typo & go report card
[CI SKIP]
1 parent 74557ad commit 500e6bc

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Wredis
22
===
33

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)
55

66
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)
77

wredis_keys.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (w *Wredis) Del(keys ...string) (int64, error) {
2525
return w.ExecInt64(del)
2626
}
2727

28-
// Exists checks for the existance of `key` in Redis. Note however,
28+
// Exists checks for the existence of `key` in Redis. Note however,
2929
// even though a variable number of keys can be passed to the EXISTS command
3030
// since Redis 3.0.3, we will restrict this to a single key in order to
3131
// be able to return an absolute response regarding existence.

0 commit comments

Comments
 (0)