Ver código fonte

Fix: comment typo

Rod Hynes 7 anos atrás
pai
commit
8e0077f88a
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      MobileLibrary/psi/psi.go

+ 1 - 1
MobileLibrary/psi/psi.go

@@ -94,7 +94,7 @@ func Start(
 	psiphon.DoGarbageCollection()
 	psiphon.DoGarbageCollection()
 
 
 	// Wrap the provider in a layer that locks a mutex before calling a provider function.
 	// Wrap the provider in a layer that locks a mutex before calling a provider function.
-	// The the provider callbacks are Java/Obj-C via gomobile, they are cgo calls that
+	// As the provider callbacks are Java/Obj-C via gomobile, they are cgo calls that
 	// can cause OS threads to be spawned. The mutex prevents many calling goroutines from
 	// can cause OS threads to be spawned. The mutex prevents many calling goroutines from
 	// causing unbounded numbers of OS threads to be spawned.
 	// causing unbounded numbers of OS threads to be spawned.
 	// TODO: replace the mutex with a semaphore, to allow a larger but still bounded concurrent
 	// TODO: replace the mutex with a semaphore, to allow a larger but still bounded concurrent