Skip to content

Commit a8551d3

Browse files
author
hekangning
committed
update example
1 parent 85ed355 commit a8551d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ a Redisson like distributed locking implementation using Redis.
55
## Installation
66

77
```shell
8-
go get github.com/cheerego/godisson
8+
go get github.com/cheerego/go-redisson
99
```
1010

1111

@@ -14,12 +14,12 @@ go get github.com/cheerego/godisson
1414
* Mutex
1515
1. Exclusive Lock (X Lock).
1616
2. use it like std package sync.Mutex.
17-
3. not a reentrant lock, can't lock twice in a same goroutine.
17+
3. not a reentrant lock that can't lock twice in a same goroutine.
1818

1919
* RLock
2020
1. Exclusive Reentrant Lock.
2121
2. use it like java redisson.
22-
3. it is a reentrant lock that can lock many times in a same goroutine.
22+
3. a reentrant lock that can lock many times in a same goroutine.
2323

2424
## Features
2525

0 commit comments

Comments
 (0)