From 0ce5ad333d5c5a9da2f6c510f35b1438cebba476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Bollans=C3=A9e?= Date: Thu, 16 Oct 2025 16:16:19 +0100 Subject: [PATCH] Update confusing `bool` docs. --- src/Rel8/Table/Bool.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rel8/Table/Bool.hs b/src/Rel8/Table/Bool.hs index 557c27fa..62339b3f 100644 --- a/src/Rel8/Table/Bool.hs +++ b/src/Rel8/Table/Bool.hs @@ -20,7 +20,7 @@ import Rel8.Schema.HTable ( htabulate, hfield ) import Rel8.Table ( Table, fromColumns, toColumns ) --- | An if-then-else expression on tables. +-- | Case analysis for an @Expr Bool@. Corresponds to 'Data.Bool.bool'. -- -- @bool x y p@ returns @x@ if @p@ is @False@, and returns @y@ if @p@ is -- @True@.