Skip to content

Commit

Permalink
Fix code block format (#329)
Browse files Browse the repository at this point in the history
Without the indentation, this doesn't parse properly
  • Loading branch information
TeofilC authored Jun 20, 2024
1 parent 21b1733 commit d8ca92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Rel8/Window.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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) =
Expand Down

0 comments on commit d8ca92f

Please sign in to comment.