builtins.types: fix type for builtins.tail

This commit is contained in:
h7x4 2024-09-18 15:10:53 +02:00 committed by Johannes Kirschbauer
parent 50cc97db6d
commit 3e917d9e52

View File

@ -95,7 +95,7 @@
"stringLength": { "fn_type": "stringLength :: String -> Int" },
"sub": { "fn_type": "sub :: Number -> Number -> Number" },
"substring": { "fn_type": "substring :: Int -> Int -> String -> String" },
"tail": { "fn_type": "tail :: [a] -> a" },
"tail": { "fn_type": "tail :: [a] -> [a]" },
"throw": { "fn_type": "throw :: String" },
"toFile": { "fn_type": "toFile :: Path -> String -> StorePath " },
"toJSON": { "fn_type": "toJSON :: a -> String" },