From b347c8ec52cd28a6cf3ae009953a9aef6d52ee31 Mon Sep 17 00:00:00 2001 From: Justin Weissig Date: Tue, 4 Jun 2019 00:29:36 -0700 Subject: [PATCH] Update comment spelling in postgresql.go (#6817) Fixed minor comment: PostgresSQL/PostgreSQL --- physical/postgresql/postgresql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physical/postgresql/postgresql.go b/physical/postgresql/postgresql.go index 013eae624c..adad9edf79 100644 --- a/physical/postgresql/postgresql.go +++ b/physical/postgresql/postgresql.go @@ -315,7 +315,7 @@ func (p *PostgreSQLBackend) HAEnabled() bool { // PostgreSQL table. It will block until either the stop channel is closed or // the lock could be acquired successfully. The returned channel will be closed // once the lock in the PostgreSQL table cannot be renewed, either due to an -// error speaking to PostgresSQL or because someone else has taken it. +// error speaking to PostgreSQL or because someone else has taken it. func (l *PostgreSQLLock) Lock(stopCh <-chan struct{}) (<-chan struct{}, error) { l.lock.Lock() defer l.lock.Unlock()