Skip to content

Commit

Permalink
deploy: 0f2c059
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Aug 27, 2023
1 parent 590b6a9 commit 92f72e9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions book/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,9 @@ <h2 id="the-girtoml-file-2"><a class="header" href="#the-girtoml-file-2">The Gir
</ul>
<pre><pre class="playground"><code class="language-rust"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>pub use auto::functions::*;
</span>pub mod functions {
pub use super::auto::functions::*;
}
<span class="boring">}</span></code></pre></pre>
<h2 id="generating-the-code"><a class="header" href="#generating-the-code">Generating the code</a></h2>
<p>In order to generate the code for the safe wrapper, we follow these steps until all objects have been generated:</p>
Expand Down Expand Up @@ -873,7 +875,7 @@ <h2 id="bad-function-generation"><a class="header" href="#bad-function-generatio
The <code>src/prelude.rs</code> file looks like this:</p>
<pre><pre class="playground"><code class="language-rust"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>pub use auto::traits::*;
</span>pub use crate::auto::traits::*;
pub use region::RegionExtManual;
<span class="boring">}</span></code></pre></pre>
<p>Then it's reexported as follows from the <code>src/lib.rs</code> file:</p>
Expand Down
2 changes: 1 addition & 1 deletion book/searchindex.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion book/tutorial/handling_errors.html
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ <h2 id="bad-function-generation"><a class="header" href="#bad-function-generatio
The <code>src/prelude.rs</code> file looks like this:</p>
<pre><pre class="playground"><code class="language-rust"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>pub use auto::traits::*;
</span>pub use crate::auto::traits::*;
pub use region::RegionExtManual;
<span class="boring">}</span></code></pre></pre>
<p>Then it's reexported as follows from the <code>src/lib.rs</code> file:</p>
Expand Down
4 changes: 3 additions & 1 deletion book/tutorial/high_level_rust_api.html
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,9 @@ <h2 id="the-girtoml-file"><a class="header" href="#the-girtoml-file">The Gir.tom
</ul>
<pre><pre class="playground"><code class="language-rust"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>pub use auto::functions::*;
</span>pub mod functions {
pub use super::auto::functions::*;
}
<span class="boring">}</span></code></pre></pre>
<h2 id="generating-the-code"><a class="header" href="#generating-the-code">Generating the code</a></h2>
<p>In order to generate the code for the safe wrapper, we follow these steps until all objects have been generated:</p>
Expand Down

0 comments on commit 92f72e9

Please sign in to comment.