Skip to content

Commit d6b568f

Browse files
committed
generate html
1 parent 26533d3 commit d6b568f

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

docs/Home.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ <h1 id="home"><a class="header" href="#home">Home</a></h1>
179179
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window};
180180

181181
fn main() {
182-
let wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
182+
let mut wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
183183
wind.end();
184184
wind.show();
185185
}</code></pre></pre>
@@ -208,7 +208,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
208208
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window::Window};
209209

210210
fn main() {
211-
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
211+
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
212212
wind.end();
213213
wind.show();
214214
}</code></pre></pre>
@@ -217,7 +217,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
217217

218218
fn main() {
219219
let a = app::App::default();
220-
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
220+
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
221221
wind.end();
222222
wind.show();
223223
a.run().unwrap();

docs/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ <h1 id="home"><a class="header" href="#home">Home</a></h1>
179179
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window};
180180

181181
fn main() {
182-
let wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
182+
let mut wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
183183
wind.end();
184184
wind.show();
185185
}</code></pre></pre>
@@ -208,7 +208,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
208208
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window::Window};
209209

210210
fn main() {
211-
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
211+
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
212212
wind.end();
213213
wind.show();
214214
}</code></pre></pre>
@@ -217,7 +217,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
217217

218218
fn main() {
219219
let a = app::App::default();
220-
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
220+
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
221221
wind.end();
222222
wind.show();
223223
a.run().unwrap();

docs/print.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ <h1 id="home"><a class="header" href="#home">Home</a></h1>
177177
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window};
178178

179179
fn main() {
180-
let wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
180+
let mut wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
181181
wind.end();
182182
wind.show();
183183
}</code></pre></pre>
@@ -206,7 +206,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
206206
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window::Window};
207207

208208
fn main() {
209-
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
209+
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
210210
wind.end();
211211
wind.show();
212212
}</code></pre></pre>
@@ -215,7 +215,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
215215

216216
fn main() {
217217
let a = app::App::default();
218-
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
218+
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
219219
wind.end();
220220
wind.show();
221221
a.run().unwrap();

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)