diff options
| author | Fuwn <[email protected]> | 2021-05-06 21:56:41 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 21:56:41 -0700 |
| commit | 57c2c764df1cbabd2925fdb11bd4062e235f179b (patch) | |
| tree | 7209ca693d8de50bd79b2413dfca8a7323f103f8 | |
| parent | fix(utils): conditional authorization header placement (diff) | |
| download | api-worker-57c2c764df1cbabd2925fdb11bd4062e235f179b.tar.xz api-worker-57c2c764df1cbabd2925fdb11bd4062e235f179b.zip | |
fix(global): license header case
| -rw-r--r-- | .license_template | 2 | ||||
| -rw-r--r-- | src/constants.rs | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 | ||||
| -rw-r--r-- | src/routes.rs | 2 | ||||
| -rw-r--r-- | src/structures.rs | 2 | ||||
| -rw-r--r-- | src/utils.rs | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/.license_template b/.license_template index 218171e..f159e54 100644 --- a/.license_template +++ b/.license_template @@ -1,2 +1,2 @@ -// Copyleft (ɔ) {20\d{2}(-20\d{2})?} The Senpy Club +// copyleft (ɔ) {20\d{2}(-20\d{2})?} the senpy club // SPDX-License-Identifier: GPL-3.0-only diff --git a/src/constants.rs b/src/constants.rs index 5772951..96b6704 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,4 +1,4 @@ -// Copyleft (ɔ) 2021-2021 The Senpy Club +// copyleft (ɔ) 2021-2021 the senpy club // SPDX-License-Identifier: GPL-3.0-only pub const GITHUB_USER_CONTENT: &str = diff --git a/src/main.rs b/src/main.rs index 18f56fc..a143a1e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -// Copyleft (ɔ) 2021-2021 The Senpy Club +// copyleft (ɔ) 2021-2021 the senpy club // SPDX-License-Identifier: GPL-3.0-only #![feature(type_ascription)] diff --git a/src/routes.rs b/src/routes.rs index 5ec12d6..20536ec 100644 --- a/src/routes.rs +++ b/src/routes.rs @@ -1,4 +1,4 @@ -// Copyleft (ɔ) 2021-2021 The Senpy Club +// copyleft (ɔ) 2021-2021 the senpy club // SPDX-License-Identifier: GPL-3.0-only use actix_web::{HttpRequest, HttpResponse}; diff --git a/src/structures.rs b/src/structures.rs index 0e9f227..8782e26 100644 --- a/src/structures.rs +++ b/src/structures.rs @@ -1,4 +1,4 @@ -// Copyleft (ɔ) 2021-2021 The Senpy Club +// copyleft (ɔ) 2021-2021 the senpy club // SPDX-License-Identifier: GPL-3.0-only use serde_derive::{Deserialize, Serialize}; diff --git a/src/utils.rs b/src/utils.rs index 3d40e7c..2b4cb93 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -1,4 +1,4 @@ -// Copyleft (ɔ) 2021-2021 The Senpy Club +// copyleft (ɔ) 2021-2021 the senpy club // SPDX-License-Identifier: GPL-3.0-only use crate::{ |