diff --git a/README.md b/README.md index 46f3fb51..ebe05357 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp. {-# LANGUAGE OverloadedStrings #-} import Web.Scotty -import Data.Monoid (mconcat) - main = scotty 3000 $ get "/:word" $ do beam <- captureParam "word" @@ -41,7 +39,7 @@ Feel free to ask questions or report bugs on the [Github issue tracker](https:// Github issues are now (September 2023) labeled, so newcomers to the Haskell language can start with `easy fix` ones and gradually progress to `new feature`s, `bug`s and `R&D` :) -## Package version numbers +## Package versions Scotty adheres to the [Package Versioning Policy](https://pvp.haskell.org/). @@ -71,4 +69,4 @@ Scotty adheres to the [Package Versioning Policy](https://pvp.haskell.org/). # Copyright -(c) 2012-Present Andrew Farmer and Scotty contributors +(c) 2012-Present, Andrew Farmer and Scotty contributors diff --git a/scotty.cabal b/scotty.cabal index 42f3ffd4..6a4de172 100644 --- a/scotty.cabal +++ b/scotty.cabal @@ -7,7 +7,7 @@ License: BSD3 License-file: LICENSE Author: Andrew Farmer Maintainer: The Scotty maintainers -Copyright: (c) 2012-Present Andrew Farmer and the Scotty maintainers +Copyright: (c) 2012-Present, Andrew Farmer and the Scotty contributors Category: Web Stability: experimental Build-type: Simple @@ -20,8 +20,6 @@ Description: . import Web.Scotty . - import Data.Monoid (mconcat) - . main = scotty 3000 $ get "/:word" $ do beam <- captureParam "word"