1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-04 13:43:37 +03:00
This commit is contained in:
Sergey 2019-12-27 22:00:48 +00:00 committed by GitHub
commit c69a0a78cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ A semaphore is a synchronization pattern/primitive that imposes mutual exclusion
package semaphore
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")
)