mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-28 16:06:07 +03:00
typo aquire -> acquire
This commit is contained in:
parent
f978e42036
commit
68149d2b3c
@ -7,7 +7,7 @@ A semaphore is a synchronization pattern/primitive that imposes mutual exclusion
|
|||||||
package semaphore
|
package semaphore
|
||||||
|
|
||||||
var (
|
var (
|
||||||
ErrNoTickets = errors.New("semaphore: could not aquire semaphore")
|
ErrNoTickets = errors.New("semaphore: could not acquire semaphore")
|
||||||
ErrIllegalRelease = errors.New("semaphore: can't release the semaphore without acquiring it first")
|
ErrIllegalRelease = errors.New("semaphore: can't release the semaphore without acquiring it first")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user