Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Data/Array.purs
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ takeWhile p xs = (span p xs).init
-- |
foreign import drop :: forall a. Int -> Array a -> Array a

-- | Drop a number of elements from the start of an array, creating a new array.
-- | Drop a number of elements from the end of an array, creating a new array.
-- |
-- | ```purescript
-- | letters = ["a", "b", "c", "d"]
Expand Down