summaryrefslogtreecommitdiff
path: root/doc/freestanding/tangle.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/freestanding/tangle.html')
-rw-r--r--doc/freestanding/tangle.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/freestanding/tangle.html b/doc/freestanding/tangle.html
index 2966ef1..85ede91 100644
--- a/doc/freestanding/tangle.html
+++ b/doc/freestanding/tangle.html
@@ -59,9 +59,7 @@ pub fn main() !u8 {
<h3 id="license">License:</h3>
<pre><code>&#47;&#47; Copyright 2022 DistressNetwork° &#60;uplink@distress.network&#62;
-&#47;&#47; This Source Code Form is subject to the terms of the Mozilla Public
-&#47;&#47; License, v. 2.0. If a copy of the MPL was not distributed with this
-&#47;&#47; file, You can obtain one at https:&#47;&#47;mozilla.org&#47;MPL&#47;2.0&#47;.
+&#47;&#47; 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:&#47;&#47;mozilla.org&#47;MPL&#47;2.0&#47;.
</code></pre>
<p>First we import the other files containing the core functions.</p>
@@ -96,7 +94,7 @@ defer arena.deinit();
<h3 id="read-file-from-stdin">Read file from stdin:</h3>
-<pre><code>const input = stdin.reader().readAllAlloc(alloc, data.input_max) catch |err| switch (err) {
+<pre><code>const input = stdin.reader().readAllAlloc(alloc, data.input_max) catch |err| switch (err) {
error.StreamTooLong =&#62; {
log(.err, "input too large (maximum {})", .{std.fmt.fmtIntSizeBin(data.input_max)});
return 1;