From 68149d2b3c5447de65428839793f2e4464beb7fd Mon Sep 17 00:00:00 2001 From: Sergey Date: Sat, 28 Dec 2019 01:00:35 +0300 Subject: [PATCH] typo aquire -> acquire --- synchronization/semaphore.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synchronization/semaphore.md b/synchronization/semaphore.md index 85c7109..23306ab 100644 --- a/synchronization/semaphore.md +++ b/synchronization/semaphore.md @@ -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") )