Skip to content

Commit

Permalink
deploy: 1877b60
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] committed Oct 13, 2024
1 parent 315d235 commit 3db4c3a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion fpp-dev/env.html
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ <h2 id="full-example"><a class="header" href="#full-example">Full Example</a></h
</ol>
<p>Other programs (<code>clients</code>) may have different requirements for communication with the <code>host</code>, but the above is a common pattern for programs built on top of a FPVMs. In general:</p>
<ol>
<li>The <code>client</code> program is a state machine that is responsible for bootstrapping itself from the inputs, executing the progam logic, and verifying the outcome.</li>
<li>The <code>client</code> program is a state machine that is responsible for bootstrapping itself from the inputs, executing the program logic, and verifying the outcome.</li>
<li>The <code>host</code> is responsible for providing the <code>client</code> with data it wasn't bootstrapped with, and for executing the program itself.</li>
</ol>
<!-- External -->
Expand Down
6 changes: 3 additions & 3 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ <h2 id="full-example"><a class="header" href="#full-example">Full Example</a></h
</ol>
<p>Other programs (<code>clients</code>) may have different requirements for communication with the <code>host</code>, but the above is a common pattern for programs built on top of a FPVMs. In general:</p>
<ol>
<li>The <code>client</code> program is a state machine that is responsible for bootstrapping itself from the inputs, executing the progam logic, and verifying the outcome.</li>
<li>The <code>client</code> program is a state machine that is responsible for bootstrapping itself from the inputs, executing the program logic, and verifying the outcome.</li>
<li>The <code>host</code> is responsible for providing the <code>client</code> with data it wasn't bootstrapped with, and for executing the program itself.</li>
</ol>
<!-- External -->
Expand Down Expand Up @@ -450,10 +450,10 @@ <h3 id="kona-common"><a class="header" href="#kona-common"><code>kona-common</co
exposes a safe API:</p>
<pre><code class="language-rs">use kona_common::{io, FileDescriptor};

// Print to `stdout`. Infalliable, will panic if dispatch fails.
// Print to `stdout`. Infallible, will panic if dispatch fails.
io::print("Hello, world!");

// Print to `stderr`. Infalliable, will panic if dispatch fails.
// Print to `stderr`. Infallible, will panic if dispatch fails.
io::print_err("Goodbye, world!");

// Read from or write to a specified file descriptor. Returns a result with the
Expand Down
4 changes: 2 additions & 2 deletions sdk/fpvm-backend.html
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ <h3 id="kona-common"><a class="header" href="#kona-common"><code>kona-common</co
exposes a safe API:</p>
<pre><code class="language-rs">use kona_common::{io, FileDescriptor};

// Print to `stdout`. Infalliable, will panic if dispatch fails.
// Print to `stdout`. Infallible, will panic if dispatch fails.
io::print("Hello, world!");

// Print to `stderr`. Infalliable, will panic if dispatch fails.
// Print to `stderr`. Infallible, will panic if dispatch fails.
io::print_err("Goodbye, world!");

// Read from or write to a specified file descriptor. Returns a result with the
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit 3db4c3a

Please sign in to comment.