Fix code block format (#329)

Without the indentation, this doesn't parse properly
This commit is contained in:
Teo Camarasu 2024-06-20 17:28:57 +01:00 committed by GitHub
parent 21b1733486
commit d8ca92fe85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ newtype Partition a = Partition (Opaleye.Window a)
-- | 'over' adds a 'Partition' to a 'Window' expression.
--
-- @
-- 'Rel8.Table.Window.cumulative' ('Rel8.Expr.Aggregate.sum' . salary) `over` 'partitionBy' department <> 'orderPartitionBy' (salary >$< 'Rel8.desc')
-- 'Rel8.Table.Window.cumulative' ('Rel8.Expr.Aggregate.sum' . salary) `over` 'partitionBy' department <> 'orderPartitionBy' (salary >$< 'Rel8.desc')
-- @
over :: Window a b -> Partition a -> Window a b
over (Window (Opaleye.Windows (Opaleye.PackMap w))) (Partition p) =