diff --git a/AUTHORS b/AUTHORS index 641fe4c..3923c78 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,6 +1,7 @@ -# This is the list of peniko authors for copyright purposes. +# This is the list of Peniko's significant contributors. # -# This does not necessarily list everyone who has contributed code, since in -# some cases, their employer may be the copyright holder. To see the full list -# of contributors, see the revision history in source control. +# This does not necessarily list everyone who has contributed code, +# especially since many employees of one corporation may be contributing. +# To see the full list of contributors, see the revision history in +# source control. Chad Brokaw diff --git a/src/blend.rs b/src/blend.rs index 6a83aac..418bbf8 100644 --- a/src/blend.rs +++ b/src/blend.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT /// Defines the color mixing function for a [blend operation](BlendMode). diff --git a/src/blob.rs b/src/blob.rs index c5498d2..14bbcff 100644 --- a/src/blob.rs +++ b/src/blob.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use core::fmt; diff --git a/src/brush.rs b/src/brush.rs index d7abd86..5df7a33 100644 --- a/src/brush.rs +++ b/src/brush.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use super::{Color, Gradient, Image}; diff --git a/src/color.rs b/src/color.rs index e6b4241..169b069 100644 --- a/src/color.rs +++ b/src/color.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors and piet authors. +// Copyright 2022 the Peniko Authors and the Piet Authors // SPDX-License-Identifier: Apache-2.0 OR MIT // Borrows code heavily from the piet (https://github.com/linebender/piet/) Color diff --git a/src/font.rs b/src/font.rs index d9158c3..eb7db4d 100644 --- a/src/font.rs +++ b/src/font.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use super::Blob; diff --git a/src/gradient.rs b/src/gradient.rs index a6bff92..70f31ce 100644 --- a/src/gradient.rs +++ b/src/gradient.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use super::{Color, Extend}; diff --git a/src/image.rs b/src/image.rs index 5fd8ce9..57f0615 100644 --- a/src/image.rs +++ b/src/image.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use super::{Blob, Extend}; diff --git a/src/lib.rs b/src/lib.rs index 8f6ccc1..8f95077 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT //! A Rust 2D graphics type library diff --git a/src/style.rs b/src/style.rs index 7e78869..1b0f120 100644 --- a/src/style.rs +++ b/src/style.rs @@ -1,4 +1,4 @@ -// Copyright 2022 The peniko authors. +// Copyright 2022 the Peniko Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use kurbo::Stroke;