summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoreudoxia <uplink@distress.network>2022-05-01 18:35:20 -0400
committereudoxia <uplink@distress.network>2022-05-01 18:35:20 -0400
commit1785c8cc4eb8a60c530a551471f1d5ddf0538e1a (patch)
tree9c6547f640844b057edec1a0446050a0483acbb5 /src
parent04518819d5916cd4d024b4c6c777d23c75407e60 (diff)
slight formatting fixes, misc cleaning
Diffstat (limited to 'src')
-rw-r--r--src/data.zig4
-rw-r--r--src/log.zig4
-rw-r--r--src/tangle.zig4
-rw-r--r--src/weave.zig4
4 files changed, 4 insertions, 12 deletions
diff --git a/src/data.zig b/src/data.zig
index c791daf..b1a342c 100644
--- a/src/data.zig
+++ b/src/data.zig
@@ -1,7 +1,5 @@
// Copyright 2022 DistressNetwork° <uplink@distress.network>
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
const std = @import("std");
const log = @import("log.zig").log;
diff --git a/src/log.zig b/src/log.zig
index 0212885..578b309 100644
--- a/src/log.zig
+++ b/src/log.zig
@@ -1,7 +1,5 @@
// Copyright 2022 DistressNetwork° <uplink@distress.network>
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
const std = @import("std");
const Level = std.log.Level;
diff --git a/src/tangle.zig b/src/tangle.zig
index 92a2200..ff6789e 100644
--- a/src/tangle.zig
+++ b/src/tangle.zig
@@ -1,7 +1,5 @@
// Copyright 2022 DistressNetwork° <uplink@distress.network>
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
const std = @import("std");
const data = @import("data.zig");
diff --git a/src/weave.zig b/src/weave.zig
index de5353c..723dcfd 100644
--- a/src/weave.zig
+++ b/src/weave.zig
@@ -1,7 +1,5 @@
// Copyright 2022 DistressNetwork° <uplink@distress.network>
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
const std = @import("std");
const data = @import("data.zig");