Skip to content

Commit

Permalink
deploy: ae7e0e2
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeMasen committed May 7, 2024
1 parent bffac8b commit 7820a0f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions 02.ress/2.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ <h1 id="building-an-ie8-linter"><a class="header" href="#building-an-ie8-linter"
serde = &quot;1&quot;
serde_derive = &quot;1&quot;
toml = &quot;0.5&quot;
atty = &quot;0.2&quot;
</code></pre>
<p>Next we want to use the <code>Scanner</code> and <code>Token</code> from <code>ress</code>, we can do this by importing all the contents of the <code>prelude</code>.</p>
<pre><pre class="playground"><code class="language-rust">
Expand Down Expand Up @@ -192,7 +191,7 @@ <h1 id="building-an-ie8-linter"><a class="header" href="#building-an-ie8-linter"
} else {
let mut std_in = ::std::io::stdin();
let mut ret = String::new();
if atty::is(atty::Stream::Stdin) {
if std_in.is_terminal() {
return Ok(ret)
}
std_in.read_to_string(&amp;mut ret)?;
Expand Down
1 change: 0 additions & 1 deletion 03.ressa/2.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ <h2 id="demo"><a class="header" href="#demo">Demo</a></h2>

[dependencies]
ressa = &quot;0.7.0-beta-7&quot;
atty = &quot;0.2&quot;
resw = &quot;0.4.0-beta-1&quot;
resast = &quot;0.4&quot;
</code></pre>
Expand Down
4 changes: 1 addition & 3 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ <h1 style="text-align: center;margin: 0;">An Overview</h1>
serde = &quot;1&quot;
serde_derive = &quot;1&quot;
toml = &quot;0.5&quot;
atty = &quot;0.2&quot;
</code></pre>
<p>Next we want to use the <code>Scanner</code> and <code>Token</code> from <code>ress</code>, we can do this by importing all the contents of the <code>prelude</code>.</p>
<pre><pre class="playground"><code class="language-rust">
Expand Down Expand Up @@ -395,7 +394,7 @@ <h1 style="text-align: center;margin: 0;">An Overview</h1>
} else {
let mut std_in = ::std::io::stdin();
let mut ret = String::new();
if atty::is(atty::Stream::Stdin) {
if std_in.is_terminal() {
return Ok(ret)
}
std_in.read_to_string(&amp;mut ret)?;
Expand Down Expand Up @@ -776,7 +775,6 @@ <h2 id="demo-1"><a class="header" href="#demo-1">Demo</a></h2>

[dependencies]
ressa = &quot;0.7.0-beta-7&quot;
atty = &quot;0.2&quot;
resw = &quot;0.4.0-beta-1&quot;
resast = &quot;0.4&quot;
</code></pre>
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 7820a0f

Please sign in to comment.