From 91f1c13b9a8ef06fc62003f427b52975fca48bf2 Mon Sep 17 00:00:00 2001 From: Erik Wienhold Date: Mon, 29 Apr 2024 23:15:36 +0200 Subject: [PATCH] Fix typo in bag_eq() docs --- doc/pgtap.mmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pgtap.mmd b/doc/pgtap.mmd index 4aab59fc..98ee023c 100644 --- a/doc/pgtap.mmd +++ b/doc/pgtap.mmd @@ -1560,7 +1560,7 @@ any unexpected overlap between the query results. The `bag_eq()` function is just like `set_eq()`, except that it considers the results as bags rather than as sets. A bag is a set that allows duplicates. In practice, it mean that you can use `bag_eq()` to test result sets where order -doesn't matter, but duplication does. In other words, if a two rows are the +doesn't matter, but duplication does. In other words, if two rows are the same in the first result set, the same row must appear twice in the second result set.