What does an apostrophe in front of a list ( '[Something] ) mean in Haskell?

Viewed 1299

I was reading the Servant documentation and came across this line:

type UserAPI = "users" :> QueryParam "sortby" SortBy :> Get '[JSON] [User]

What is the ' doing to that list?

2 Answers
Related