aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-14 15:06:58 +0000
committerFuwn <[email protected]>2021-06-14 15:06:58 +0000
commit4a6cac4e40b0a9cfb966727cd84f6bd10ff49e31 (patch)
treed2d7833b9c60ebb5b0f3abc3a4136af3cc1eb1f9
parentrefactor(cli): clippy lints (diff)
downloadwhirl-4a6cac4e40b0a9cfb966727cd84f6bd10ff49e31.tar.xz
whirl-4a6cac4e40b0a9cfb966727cd84f6bd10ff49e31.zip
style(global): fix license spec
-rw-r--r--.license_template2
-rw-r--r--benches/whirl_common.rs2
-rw-r--r--crates/whirl/src/cli.rs2
-rw-r--r--crates/whirl/src/lib.rs2
-rw-r--r--crates/whirl/src/main.rs2
-rw-r--r--crates/whirl_api/src/lib.rs2
-rw-r--r--crates/whirl_api/src/routes/mod.rs2
-rw-r--r--crates/whirl_api/src/routes/stats/mod.rs2
-rw-r--r--crates/whirl_api/src/routes/stats/structures.rs2
-rw-r--r--crates/whirl_common/src/lib.rs2
-rw-r--r--crates/whirl_common/src/log.rs2
-rw-r--r--crates/whirl_common/src/sort.rs2
-rw-r--r--crates/whirl_common/src/system.rs2
-rw-r--r--crates/whirl_common/tests/test.rs2
-rw-r--r--crates/whirl_config/src/lib.rs2
-rw-r--r--crates/whirl_config/src/structures.rs2
-rw-r--r--crates/whirl_db/src/lib.rs2
-rw-r--r--crates/whirl_db/src/models.rs2
-rw-r--r--crates/whirl_prompt/src/builtins/constants.rs2
-rw-r--r--crates/whirl_prompt/src/builtins/mod.rs2
-rw-r--r--crates/whirl_prompt/src/builtins/structures.rs2
-rw-r--r--crates/whirl_prompt/src/lib.rs2
-rw-r--r--crates/whirl_prompt/src/structure.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/action.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/buddy_list.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/mod.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/property/create.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/property/mod.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/redirect_id.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/room_id_request.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/subscribe_distance.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/subscribe_room.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/teleport.rs2
-rw-r--r--crates/whirl_server/src/cmd/commands/text.rs2
-rw-r--r--crates/whirl_server/src/cmd/constants.rs2
-rw-r--r--crates/whirl_server/src/cmd/extendable.rs2
-rw-r--r--crates/whirl_server/src/cmd/mod.rs2
-rw-r--r--crates/whirl_server/src/cmd/structure.rs2
-rw-r--r--crates/whirl_server/src/distributor.rs2
-rw-r--r--crates/whirl_server/src/hub.rs2
-rw-r--r--crates/whirl_server/src/interaction/mod.rs2
-rw-r--r--crates/whirl_server/src/interaction/peer.rs2
-rw-r--r--crates/whirl_server/src/interaction/shared.rs2
-rw-r--r--crates/whirl_server/src/lib.rs2
-rw-r--r--crates/whirl_server/src/net/constants.rs2
-rw-r--r--crates/whirl_server/src/net/mod.rs2
-rw-r--r--crates/whirl_server/src/net/network_property.rs2
-rw-r--r--crates/whirl_server/src/net/property_list.rs2
-rw-r--r--crates/whirl_server/src/packet_parser.rs2
49 files changed, 49 insertions, 49 deletions
diff --git a/.license_template b/.license_template
index 1fda769..8ea4370 100644
--- a/.license_template
+++ b/.license_template
@@ -1,2 +1,2 @@
-// Copyleft (ɔ) {20\d{2}(-20\d{2})?} The Whirlsplash Collective
+// Copyright (C) {20\d{2}(-20\d{2})?} The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
diff --git a/benches/whirl_common.rs b/benches/whirl_common.rs
index dd4a945..025c719 100644
--- a/benches/whirl_common.rs
+++ b/benches/whirl_common.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
fn iai_benchmark_sort_vec_alphabetically() {
diff --git a/crates/whirl/src/cli.rs b/crates/whirl/src/cli.rs
index db960e0..c010e6a 100644
--- a/crates/whirl/src/cli.rs
+++ b/crates/whirl/src/cli.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use std::str::FromStr;
diff --git a/crates/whirl/src/lib.rs b/crates/whirl/src/lib.rs
index 02de6e1..e88c818 100644
--- a/crates/whirl/src/lib.rs
+++ b/crates/whirl/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
#![feature(
diff --git a/crates/whirl/src/main.rs b/crates/whirl/src/main.rs
index dabc574..bf921d1 100644
--- a/crates/whirl/src/main.rs
+++ b/crates/whirl/src/main.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
#[tokio::main]
diff --git a/crates/whirl_api/src/lib.rs b/crates/whirl_api/src/lib.rs
index 2380f87..3f09ce0 100644
--- a/crates/whirl_api/src/lib.rs
+++ b/crates/whirl_api/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! The API, for external interaction.
diff --git a/crates/whirl_api/src/routes/mod.rs b/crates/whirl_api/src/routes/mod.rs
index f5a2ff4..ca664cd 100644
--- a/crates/whirl_api/src/routes/mod.rs
+++ b/crates/whirl_api/src/routes/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod stats;
diff --git a/crates/whirl_api/src/routes/stats/mod.rs b/crates/whirl_api/src/routes/stats/mod.rs
index 02c3d22..ed45d0d 100644
--- a/crates/whirl_api/src/routes/stats/mod.rs
+++ b/crates/whirl_api/src/routes/stats/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod structures;
diff --git a/crates/whirl_api/src/routes/stats/structures.rs b/crates/whirl_api/src/routes/stats/structures.rs
index 88fc852..c441f0f 100644
--- a/crates/whirl_api/src/routes/stats/structures.rs
+++ b/crates/whirl_api/src/routes/stats/structures.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
#[derive(Serialize)]
diff --git a/crates/whirl_common/src/lib.rs b/crates/whirl_common/src/lib.rs
index c33a67d..1c1cc55 100644
--- a/crates/whirl_common/src/lib.rs
+++ b/crates/whirl_common/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! Assorted utilities, for global use.
diff --git a/crates/whirl_common/src/log.rs b/crates/whirl_common/src/log.rs
index d2df568..38248cf 100644
--- a/crates/whirl_common/src/log.rs
+++ b/crates/whirl_common/src/log.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use whirl_config::Config;
diff --git a/crates/whirl_common/src/sort.rs b/crates/whirl_common/src/sort.rs
index 7cbabd6..9c7e092 100644
--- a/crates/whirl_common/src/sort.rs
+++ b/crates/whirl_common/src/sort.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
/// Sort a vector by alphabetical order based on the first character of each
diff --git a/crates/whirl_common/src/system.rs b/crates/whirl_common/src/system.rs
index 2fb79e7..c4b203c 100644
--- a/crates/whirl_common/src/system.rs
+++ b/crates/whirl_common/src/system.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
const WEEK: usize = 60 * 60 * 60 * 60;
diff --git a/crates/whirl_common/tests/test.rs b/crates/whirl_common/tests/test.rs
index 5878021..6727948 100644
--- a/crates/whirl_common/tests/test.rs
+++ b/crates/whirl_common/tests/test.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
#[test]
diff --git a/crates/whirl_config/src/lib.rs b/crates/whirl_config/src/lib.rs
index 93e1876..7920ade 100644
--- a/crates/whirl_config/src/lib.rs
+++ b/crates/whirl_config/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! Configuration utilities, to interact with the configuration system.
diff --git a/crates/whirl_config/src/structures.rs b/crates/whirl_config/src/structures.rs
index 5b2f163..1d03983 100644
--- a/crates/whirl_config/src/structures.rs
+++ b/crates/whirl_config/src/structures.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
#[derive(Serialize, Deserialize, Debug)]
diff --git a/crates/whirl_db/src/lib.rs b/crates/whirl_db/src/lib.rs
index eae57bd..07098b3 100644
--- a/crates/whirl_db/src/lib.rs
+++ b/crates/whirl_db/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! Database utilities, to interact with the database.
diff --git a/crates/whirl_db/src/models.rs b/crates/whirl_db/src/models.rs
index b5913ef..dcef381 100644
--- a/crates/whirl_db/src/models.rs
+++ b/crates/whirl_db/src/models.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! Much of the documentation that you will see within this module is quoted
diff --git a/crates/whirl_prompt/src/builtins/constants.rs b/crates/whirl_prompt/src/builtins/constants.rs
index 8ba67bc..15e7ff2 100644
--- a/crates/whirl_prompt/src/builtins/constants.rs
+++ b/crates/whirl_prompt/src/builtins/constants.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub const FILES: [&str; 2] = ["README.rst", "Config.toml"];
diff --git a/crates/whirl_prompt/src/builtins/mod.rs b/crates/whirl_prompt/src/builtins/mod.rs
index db9cb64..96a2c76 100644
--- a/crates/whirl_prompt/src/builtins/mod.rs
+++ b/crates/whirl_prompt/src/builtins/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod constants;
diff --git a/crates/whirl_prompt/src/builtins/structures.rs b/crates/whirl_prompt/src/builtins/structures.rs
index 59df31b..39d3510 100644
--- a/crates/whirl_prompt/src/builtins/structures.rs
+++ b/crates/whirl_prompt/src/builtins/structures.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use std::str::FromStr;
diff --git a/crates/whirl_prompt/src/lib.rs b/crates/whirl_prompt/src/lib.rs
index ffb6798..e2cafbb 100644
--- a/crates/whirl_prompt/src/lib.rs
+++ b/crates/whirl_prompt/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! The Whirl Shell, for local interaction.
diff --git a/crates/whirl_prompt/src/structure.rs b/crates/whirl_prompt/src/structure.rs
index 4603d37..9914385 100644
--- a/crates/whirl_prompt/src/structure.rs
+++ b/crates/whirl_prompt/src/structure.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub struct Command {
diff --git a/crates/whirl_server/src/cmd/commands/action.rs b/crates/whirl_server/src/cmd/commands/action.rs
index 4ba7065..ac67eb2 100644
--- a/crates/whirl_server/src/cmd/commands/action.rs
+++ b/crates/whirl_server/src/cmd/commands/action.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
// TODO: of2m-ify
diff --git a/crates/whirl_server/src/cmd/commands/buddy_list.rs b/crates/whirl_server/src/cmd/commands/buddy_list.rs
index 9b53ac2..1deb442 100644
--- a/crates/whirl_server/src/cmd/commands/buddy_list.rs
+++ b/crates/whirl_server/src/cmd/commands/buddy_list.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use std::str::from_utf8;
diff --git a/crates/whirl_server/src/cmd/commands/mod.rs b/crates/whirl_server/src/cmd/commands/mod.rs
index 49758c2..884729d 100644
--- a/crates/whirl_server/src/cmd/commands/mod.rs
+++ b/crates/whirl_server/src/cmd/commands/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod action;
diff --git a/crates/whirl_server/src/cmd/commands/property/create.rs b/crates/whirl_server/src/cmd/commands/property/create.rs
index c9f0e04..4d59521 100644
--- a/crates/whirl_server/src/cmd/commands/property/create.rs
+++ b/crates/whirl_server/src/cmd/commands/property/create.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
// TODO: of2m-ify?
diff --git a/crates/whirl_server/src/cmd/commands/property/mod.rs b/crates/whirl_server/src/cmd/commands/property/mod.rs
index 8405101..3b1274e 100644
--- a/crates/whirl_server/src/cmd/commands/property/mod.rs
+++ b/crates/whirl_server/src/cmd/commands/property/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod create;
diff --git a/crates/whirl_server/src/cmd/commands/redirect_id.rs b/crates/whirl_server/src/cmd/commands/redirect_id.rs
index 3a7bb83..dec6eb1 100644
--- a/crates/whirl_server/src/cmd/commands/redirect_id.rs
+++ b/crates/whirl_server/src/cmd/commands/redirect_id.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use bytes::{BufMut, BytesMut};
diff --git a/crates/whirl_server/src/cmd/commands/room_id_request.rs b/crates/whirl_server/src/cmd/commands/room_id_request.rs
index cf507fa..d6d269b 100644
--- a/crates/whirl_server/src/cmd/commands/room_id_request.rs
+++ b/crates/whirl_server/src/cmd/commands/room_id_request.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use std::str::from_utf8;
diff --git a/crates/whirl_server/src/cmd/commands/subscribe_distance.rs b/crates/whirl_server/src/cmd/commands/subscribe_distance.rs
index d5cbcf6..cbf0269 100644
--- a/crates/whirl_server/src/cmd/commands/subscribe_distance.rs
+++ b/crates/whirl_server/src/cmd/commands/subscribe_distance.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use byteorder::{BigEndian, ReadBytesExt};
diff --git a/crates/whirl_server/src/cmd/commands/subscribe_room.rs b/crates/whirl_server/src/cmd/commands/subscribe_room.rs
index 8ed4876..b48790a 100644
--- a/crates/whirl_server/src/cmd/commands/subscribe_room.rs
+++ b/crates/whirl_server/src/cmd/commands/subscribe_room.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use byteorder::{BigEndian, ReadBytesExt};
diff --git a/crates/whirl_server/src/cmd/commands/teleport.rs b/crates/whirl_server/src/cmd/commands/teleport.rs
index 39c78f9..0357108 100644
--- a/crates/whirl_server/src/cmd/commands/teleport.rs
+++ b/crates/whirl_server/src/cmd/commands/teleport.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use byteorder::{BigEndian, ReadBytesExt};
diff --git a/crates/whirl_server/src/cmd/commands/text.rs b/crates/whirl_server/src/cmd/commands/text.rs
index 99047c6..056d7d6 100644
--- a/crates/whirl_server/src/cmd/commands/text.rs
+++ b/crates/whirl_server/src/cmd/commands/text.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use std::str::from_utf8;
diff --git a/crates/whirl_server/src/cmd/constants.rs b/crates/whirl_server/src/cmd/constants.rs
index 41986bb..1235a52 100644
--- a/crates/whirl_server/src/cmd/constants.rs
+++ b/crates/whirl_server/src/cmd/constants.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
// Have to use this until https://github.com/rust-num/num-derive/issues/47 gets
diff --git a/crates/whirl_server/src/cmd/extendable.rs b/crates/whirl_server/src/cmd/extendable.rs
index 2bf4d6e..03d7ce9 100644
--- a/crates/whirl_server/src/cmd/extendable.rs
+++ b/crates/whirl_server/src/cmd/extendable.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub trait Parsable {
diff --git a/crates/whirl_server/src/cmd/mod.rs b/crates/whirl_server/src/cmd/mod.rs
index e8f69cb..654d43a 100644
--- a/crates/whirl_server/src/cmd/mod.rs
+++ b/crates/whirl_server/src/cmd/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod commands;
diff --git a/crates/whirl_server/src/cmd/structure.rs b/crates/whirl_server/src/cmd/structure.rs
index 078871a..82cb226 100644
--- a/crates/whirl_server/src/cmd/structure.rs
+++ b/crates/whirl_server/src/cmd/structure.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub struct Command {
diff --git a/crates/whirl_server/src/distributor.rs b/crates/whirl_server/src/distributor.rs
index 1e92089..13b13e6 100644
--- a/crates/whirl_server/src/distributor.rs
+++ b/crates/whirl_server/src/distributor.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! The Distributor functions as bare-minimal
diff --git a/crates/whirl_server/src/hub.rs b/crates/whirl_server/src/hub.rs
index 6dfdab0..d823d1c 100644
--- a/crates/whirl_server/src/hub.rs
+++ b/crates/whirl_server/src/hub.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! The Hub functions as a
diff --git a/crates/whirl_server/src/interaction/mod.rs b/crates/whirl_server/src/interaction/mod.rs
index c85e09d..656c51b 100644
--- a/crates/whirl_server/src/interaction/mod.rs
+++ b/crates/whirl_server/src/interaction/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod peer;
diff --git a/crates/whirl_server/src/interaction/peer.rs b/crates/whirl_server/src/interaction/peer.rs
index d7ac49e..e12c075 100644
--- a/crates/whirl_server/src/interaction/peer.rs
+++ b/crates/whirl_server/src/interaction/peer.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use std::sync::Arc;
diff --git a/crates/whirl_server/src/interaction/shared.rs b/crates/whirl_server/src/interaction/shared.rs
index 91d7395..eb712b4 100644
--- a/crates/whirl_server/src/interaction/shared.rs
+++ b/crates/whirl_server/src/interaction/shared.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use std::collections::HashMap;
diff --git a/crates/whirl_server/src/lib.rs b/crates/whirl_server/src/lib.rs
index 85f0c60..7f9df14 100644
--- a/crates/whirl_server/src/lib.rs
+++ b/crates/whirl_server/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! Exposes the Distributor and Hub for further use.
diff --git a/crates/whirl_server/src/net/constants.rs b/crates/whirl_server/src/net/constants.rs
index 3d2c1a6..a7c5af0 100644
--- a/crates/whirl_server/src/net/constants.rs
+++ b/crates/whirl_server/src/net/constants.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
//! Despite `crate::cmd::constants` being ported from a series of constants to
diff --git a/crates/whirl_server/src/net/mod.rs b/crates/whirl_server/src/net/mod.rs
index 32f9995..51d0dce 100644
--- a/crates/whirl_server/src/net/mod.rs
+++ b/crates/whirl_server/src/net/mod.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub mod constants;
diff --git a/crates/whirl_server/src/net/network_property.rs b/crates/whirl_server/src/net/network_property.rs
index 259c83b..55800a0 100644
--- a/crates/whirl_server/src/net/network_property.rs
+++ b/crates/whirl_server/src/net/network_property.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
pub struct NetworkProperty {
diff --git a/crates/whirl_server/src/net/property_list.rs b/crates/whirl_server/src/net/property_list.rs
index c91408b..2c52132 100644
--- a/crates/whirl_server/src/net/property_list.rs
+++ b/crates/whirl_server/src/net/property_list.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use bytes::{BufMut, BytesMut};
diff --git a/crates/whirl_server/src/packet_parser.rs b/crates/whirl_server/src/packet_parser.rs
index 79293cb..13e9d0c 100644
--- a/crates/whirl_server/src/packet_parser.rs
+++ b/crates/whirl_server/src/packet_parser.rs
@@ -1,4 +1,4 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
+// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use bytes::BytesMut;