diff options
author | Albert Krewinkel <albert+github@zeitkraut.de> | 2019-02-04 22:52:31 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-02-04 13:52:31 -0800 |
commit | 37a82b0b11b0214f00cdcd232e33c0a1e9f79361 (patch) | |
tree | ad1c09cdf14e578ebd7f31843ecce2bd7c4abd17 /benchmark | |
parent | 4b8931108104db71c1bc70fb33c00179a315b6d6 (diff) | |
download | pandoc-37a82b0b11b0214f00cdcd232e33c0a1e9f79361.tar.gz |
Add missing copyright notices and remove license boilerplate (#5112)
Quite a few modules were missing copyright notices.
This commit adds copyright notices everywhere via haddock module
headers. The old license boilerplate comment is redundant with this and has
been removed.
Update copyright years to 2019.
Closes #4592.
Diffstat (limited to 'benchmark')
-rw-r--r-- | benchmark/benchmark-pandoc.hs | 2 | ||||
-rw-r--r-- | benchmark/weigh-pandoc.hs | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/benchmark/benchmark-pandoc.hs b/benchmark/benchmark-pandoc.hs index 3ed7011e4..f9a7d08a7 100644 --- a/benchmark/benchmark-pandoc.hs +++ b/benchmark/benchmark-pandoc.hs @@ -1,7 +1,7 @@ {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE TupleSections #-} {- -Copyright (C) 2012-2018 John MacFarlane <jgm@berkeley.edu> +Copyright (C) 2012-2019 John MacFarlane <jgm@berkeley.edu> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/benchmark/weigh-pandoc.hs b/benchmark/weigh-pandoc.hs index efc446404..f633255df 100644 --- a/benchmark/weigh-pandoc.hs +++ b/benchmark/weigh-pandoc.hs @@ -1,4 +1,15 @@ {-# LANGUAGE NoImplicitPrelude #-} +{- | + Module : Main + Copyright : © 2016-2019 John MacFarlane <jgm@berkeley.edu> + License : GNU GPL, version 2 or above + + Maintainer : John MacFarlane <jgm@berkeley.edu> + Stability : alpha + Portability : portable + +Benchmarks to determine resource use of readers and writers. +-} import Prelude import Weigh import Text.Pandoc |