Skip to content

Commit

Permalink
Render mdBook for b84811e
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 9, 2024
1 parent 092be72 commit 8960f30
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion latest/linq/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ <h2 id="iterator-methods-yield"><a class="header" href="#iterator-methods-yield"
<code>IEnumerable&lt;T&gt;</code> or an <code>IEnumerator&lt;T&gt;</code>. The compiler then converts the body
of the method into a concrete implementation of the return type, instead of
the developer having to write a full-blown class each time.
<em><a href="https://doc.rust-lang.org/stable/unstable-book/language-features/generators.html">Generators</a></em>, as they're called in Rust, are still considered
<em><a href="https://doc.rust-lang.org/unstable-book/language-features/coroutines.html">Coroutines</a></em>, as they're called in Rust, are still considered
an unstable feature at the time of this writing.</p>

</main>
Expand Down
6 changes: 3 additions & 3 deletions latest/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -2188,7 +2188,7 @@ <h2 id="custom-conversion"><a class="header" href="#custom-conversion">Custom co
fn main() {
let (tx, rx) = mpsc::channel();

let procuder = thread::spawn(move || {
let producer = thread::spawn(move || {
for n in 1..10 {
tx.send(format!(&quot;Message #{}&quot;, n)).unwrap();
}
Expand All @@ -2199,7 +2199,7 @@ <h2 id="custom-conversion"><a class="header" href="#custom-conversion">Custom co
println!(&quot;{}&quot;, received);
}

procuder.join().unwrap();
producer.join().unwrap();
}</code></pre>
<p>Like channels in Rust, .NET also offers channels in the
<code>System.Threading.Channels</code> namespace, but it is primarily designed to be used
Expand Down Expand Up @@ -2936,7 +2936,7 @@ <h2 id="iterator-methods-yield"><a class="header" href="#iterator-methods-yield"
<code>IEnumerable&lt;T&gt;</code> or an <code>IEnumerator&lt;T&gt;</code>. The compiler then converts the body
of the method into a concrete implementation of the return type, instead of
the developer having to write a full-blown class each time.
<em><a href="https://doc.rust-lang.org/stable/unstable-book/language-features/generators.html">Generators</a></em>, as they're called in Rust, are still considered
<em><a href="https://doc.rust-lang.org/unstable-book/language-features/coroutines.html">Coroutines</a></em>, as they're called in Rust, are still considered
an unstable feature at the time of this writing.</p>
<div style="break-before: page; page-break-before: always;"></div><h1 id="meta-programming"><a class="header" href="#meta-programming">Meta Programming</a></h1>
<p>Metaprogramming can be seen as a way of writing code that writes/generates other
Expand Down
2 changes: 1 addition & 1 deletion latest/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion latest/searchindex.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions latest/threading/producer-consumer.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ <h1 id="producer-consumer"><a class="header" href="#producer-consumer">Producer-
fn main() {
let (tx, rx) = mpsc::channel();

let procuder = thread::spawn(move || {
let producer = thread::spawn(move || {
for n in 1..10 {
tx.send(format!(&quot;Message #{}&quot;, n)).unwrap();
}
Expand All @@ -195,7 +195,7 @@ <h1 id="producer-consumer"><a class="header" href="#producer-consumer">Producer-
println!(&quot;{}&quot;, received);
}

procuder.join().unwrap();
producer.join().unwrap();
}</code></pre>
<p>Like channels in Rust, .NET also offers channels in the
<code>System.Threading.Channels</code> namespace, but it is primarily designed to be used
Expand Down

0 comments on commit 8960f30

Please sign in to comment.