Update copyright notices

This commit is contained in:
Alexis King 2017-12-06 11:49:49 -08:00
parent 1cd5705bef
commit 8a5570174c
16 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2016, Allele Dev; 2017 Ixperta Solutions s.r.o. Copyright (c) 2016, Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
All rights reserved. All rights reserved.

View File

@ -3,7 +3,7 @@
-- | -- |
-- Module: Control.Monad.Freer -- Module: Control.Monad.Freer
-- Description: Freer - an extensible effects library -- Description: Freer - an extensible effects library
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Coroutine -- Module: Control.Monad.Freer.Coroutine
-- Description: Composable coroutine effects layer. -- Description: Composable coroutine effects layer.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Cut -- Module: Control.Monad.Freer.Cut
-- Description: An implementation of logical Cut. -- Description: An implementation of logical Cut.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: broken -- Stability: broken

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Error -- Module: Control.Monad.Freer.Error
-- Description: An Error effect and handler. -- Description: An Error effect and handler.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Fresh -- Module: Control.Monad.Freer.Fresh
-- Description: Generation of fresh integers as an effect. -- Description: Generation of fresh integers as an effect.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -15,7 +15,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Internal -- Module: Control.Monad.Freer.Internal
-- Description: Mechanisms to make effects work. -- Description: Mechanisms to make effects work.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -3,7 +3,7 @@
-- | -- |
-- Module: Control.Monad.Freer.NonDet -- Module: Control.Monad.Freer.NonDet
-- Description: Non deterministic effects -- Description: Non deterministic effects
-- Copyright: 2017 Ixperta Solutions s.r.o. -- Copyright: 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Reader -- Module: Control.Monad.Freer.Reader
-- Description: Reader effects, for encapsulating an environment. -- Description: Reader effects, for encapsulating an environment.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.State -- Module: Control.Monad.Freer.State
-- Description: State effects, for state-carrying computations. -- Description: State effects, for state-carrying computations.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.StateRW -- Module: Control.Monad.Freer.StateRW
-- Description: State effects in terms of Reader and Writer. -- Description: State effects in terms of Reader and Writer.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Trace -- Module: Control.Monad.Freer.Trace
-- Description: Composable Trace effects. -- Description: Composable Trace effects.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Control.Monad.Freer.Writer -- Module: Control.Monad.Freer.Writer
-- Description: Composable Writer effects. -- Description: Composable Writer effects.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -1,7 +1,7 @@
-- | -- |
-- Module: Data.FTCQueue -- Module: Data.FTCQueue
-- Description: Fast type-aligned queue optimized to effectful functions. -- Description: Fast type-aligned queue optimized to effectful functions.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -5,7 +5,7 @@
-- | -- |
-- Module: Data.OpenUnion -- Module: Data.OpenUnion
-- Description: Open unions (type-indexed co-products) for extensible effects. -- Description: Open unions (type-indexed co-products) for extensible effects.
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental

View File

@ -9,7 +9,7 @@
-- Module: Data.OpenUnion.Internal -- Module: Data.OpenUnion.Internal
-- Description: Open unions (type-indexed co-products) for extensible effects. -- Description: Open unions (type-indexed co-products) for extensible effects.
-- --
-- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o. -- Copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
-- License: BSD3 -- License: BSD3
-- Maintainer: ixcom-core@ixperta.com -- Maintainer: ixcom-core@ixperta.com
-- Stability: experimental -- Stability: experimental