Add some code comments

master
Lennart Spitzner 2022-03-04 14:34:32 +00:00
parent b9f038b212
commit 78a32ebece
1 changed files with 5 additions and 5 deletions

View File

@ -86,13 +86,13 @@ data StreamKind = StdOut | StdErr
deriving (Eq, Show)
data JoinMode
= JoinYield
| JoinAll
| JoinSpecific
= JoinYield -- i.e. don't join: We want to yield that exact line
| JoinAll -- join with any other JoinAll-tagged lines/patterns
| JoinSpecific -- join with this pattern only
data JoinedInfo
= JoinedNot
| JoinedYield
= JoinedNot -- Line did not match any pattern
| JoinedYield -- Line matched a yield pattern, must be forwarded as-is
| JoinedAll Int
| Joined Int String [String] -- pattern, prefix