Skip to content

Commit 084b1ba

Browse files
tbidneroberth
authored andcommitted
Revert copy/paste mistake
The (<<+>>) operator was swapped for (<</>>) in c1bf93b to fix pcapriotti#360. This was mistakenly reverted when implementing the new rendering logic for option groups. This commit re-establishes the fix.
1 parent d6de25d commit 084b1ba

File tree

1 file changed

+1
-1
lines changed
  • src/Options/Applicative/Help

1 file changed

+1
-1
lines changed

src/Options/Applicative/Help/Core.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ optionsDesc global pprefs p = vsepChunks
230230
doc info opt = do
231231
guard . not . isEmpty $ n
232232
guard . not . isEmpty $ h
233-
return (grp, (extractChunk n, align . extractChunk $ h <<+>> hdef))
233+
return (grp, (extractChunk n, align . extractChunk $ h <</>> hdef))
234234
where
235235
(grp, n, _) = optDesc pprefs style info opt
236236
h = optHelp opt

0 commit comments

Comments
 (0)