Fixes a typo in the docs

I think this meant to say "until a notification is received" rather than "until a context is received".
pull/1103/head
Lorenzo Paoliani 2021-10-11 11:50:14 +01:00 committed by Jack Christensen
parent 3599f64629
commit 0d20d1241e
1 changed files with 1 additions and 1 deletions

2
doc.go
View File

@ -309,7 +309,7 @@ CopyFrom can be faster than an insert with as few as 5 rows.
Listen and Notify
pgx can listen to the PostgreSQL notification system with the `Conn.WaitForNotification` method. It blocks until a
context is received or the context is canceled.
notification is received or the context is canceled.
_, err := conn.Exec(context.Background(), "listen channelname")
if err != nil {