Skip to content

Commit

Permalink
minor variable rename
Browse files Browse the repository at this point in the history
  • Loading branch information
gameboo committed Jul 18, 2024
1 parent 8232d68 commit c35976f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VIPBundle/InterfaceInference.hs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ detectConduitPort = Just
extractField :: String -> String -> (Maybe String, String)
extractField delimiter string =
case splitOn delimiter string of
[pfx, clk, sfx] -> (Just clk, pfx ++ sfx)
[pfx, fld, sfx] -> (Just fld, pfx ++ sfx)
[original] -> (Nothing, original)

data IdentifierSplit = IdentifierSplit { clock :: Maybe String
Expand Down

0 comments on commit c35976f

Please sign in to comment.