From fa8eec8a6b7bd44f825aa6c2cac8271f8fa2e20d Mon Sep 17 00:00:00 2001 From: Craig Pastro Date: Tue, 7 Nov 2023 16:38:53 -0800 Subject: [PATCH] Fix typo in README (#31) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c8eaf2..0f34899 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ func main() { panic(err) } - // Archive the message by moving it to the "pgmq__archive" table. + // Archive the message by moving it to the "pgmq.a_" table. // Alternatively, you can `Delete` the message, or read and delete in one // call by using `Pop`. _, err = q.Archive(ctx, "my_queue", id)