Procházet zdrojové kódy

Merge pull request #13 from jessedearing/report_card_fixes

Spelling fix: aquire -> acquire
Evan Huus před 8 roky
rodič
revize
b1fe83b5b0
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      semaphore/semaphore.go

+ 1 - 1
semaphore/semaphore.go

@@ -8,7 +8,7 @@ import (
 
 // ErrNoTickets is the error returned by Acquire when it could not acquire
 // a ticket from the semaphore within the configured timeout.
-var ErrNoTickets = errors.New("could not aquire semaphore ticket")
+var ErrNoTickets = errors.New("could not acquire semaphore ticket")
 
 // Semaphore implements the semaphore resiliency pattern
 type Semaphore struct {