Skip to content

Commit

Permalink
Fix doc typo; trac #4298
Browse files Browse the repository at this point in the history
  • Loading branch information
igfoo committed Sep 12, 2010
1 parent e4a73d7 commit a3c0ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Text/PrettyPrint/HughesPJ.hs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ Laws for nest
~~~~~~~~~~~~~
<n1> nest 0 x = x
<n2> nest k (nest k' x) = nest (k+k') x
<n3> nest k (x <> y) = nest k z <> nest k y
<n3> nest k (x <> y) = nest k x <> nest k y
<n4> nest k (x $$ y) = nest k x $$ nest k y
<n5> nest k empty = empty
<n6> x <> nest k y = x <> y, if x non-empty
Expand Down

0 comments on commit a3c0ec4

Please sign in to comment.