Skip to content

Commit

Permalink
deploy: 2766270
Browse files Browse the repository at this point in the history
  • Loading branch information
glyn committed Mar 6, 2024
1 parent 96674cc commit 93d3be4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions official.html
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,16 @@ <h1 id="official-rust-books"><a class="header" href="#official-rust-books">Offic
<ul>
<li><a href="https://rust-lang.github.io/compiler-team/working-groups/"><em>Compiler team working groups</em></a> - a list of working groups</li>
<li><a href="https://std-dev-guide.rust-lang.org/about.html">Standard library developers Guide</a></li>
<li><a href="https://rust-lang.github.io/types-team/">types-team</a> - traits implementation improvements</li>
<li><a href="https://lang-team.rust-lang.org/design_notes.html">The Rust Language Design Team</a> - information related to the work of the lang team</li>
<li><a href="https://rust-lang.github.io/types-team/">The Types Team</a> - traits implementation improvements</li>
<li><a href="https://rust-lang.github.io/wg-async/">wg-async</a> - foundations of async I/O</li>
</ul>
<p>Other:</p>
<ul>
<li><a href="https://rust-lang.github.io/async-book/">Asynchronous Programming in Rust</a> - non-blocking coroutines</li>
<li><a href="https://doc.rust-lang.org/nightly/clippy/development/infrastructure/book.html">Clippy Documentation</a> - code lints for programmers</li>
<li><a href="https://bheisler.github.io/criterion.rs/book/getting_started.html">Criterion.rs</a> - statistics-driven micro-benchmarking</li>
<li><a href="https://doc.rust-lang.org/stable/error_codes/error-index.html">Error Codes Index</a> - list of all error codes emitted from the Rust compiler </li>
<li><a href="https://doc.rust-lang.org/stable/error_codes/error-index.html">Error Codes Index</a> - list of all error codes emitted from the Rust compiler</li>
<li><a href="https://rust-lang.github.io/mdBook/">mdBook</a> - authoring, rendering and serving markdown books</li>
<li><a href="https://rust-lang.github.io/polonius/">Polonius</a> - experimental borrow checker crate</li>
<li><a href="https://rust-lang.github.io/api-guidelines/">Rust API Guidelines</a> - how to design and present APIs</li>
Expand Down
5 changes: 3 additions & 2 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,16 @@ <h1 id="the-little-book-of-rust-books"><a class="header" href="#the-little-book-
<ul>
<li><a href="https://rust-lang.github.io/compiler-team/working-groups/"><em>Compiler team working groups</em></a> - a list of working groups</li>
<li><a href="https://std-dev-guide.rust-lang.org/about.html">Standard library developers Guide</a></li>
<li><a href="https://rust-lang.github.io/types-team/">types-team</a> - traits implementation improvements</li>
<li><a href="https://lang-team.rust-lang.org/design_notes.html">The Rust Language Design Team</a> - information related to the work of the lang team</li>
<li><a href="https://rust-lang.github.io/types-team/">The Types Team</a> - traits implementation improvements</li>
<li><a href="https://rust-lang.github.io/wg-async/">wg-async</a> - foundations of async I/O</li>
</ul>
<p>Other:</p>
<ul>
<li><a href="https://rust-lang.github.io/async-book/">Asynchronous Programming in Rust</a> - non-blocking coroutines</li>
<li><a href="https://doc.rust-lang.org/nightly/clippy/development/infrastructure/book.html">Clippy Documentation</a> - code lints for programmers</li>
<li><a href="https://bheisler.github.io/criterion.rs/book/getting_started.html">Criterion.rs</a> - statistics-driven micro-benchmarking</li>
<li><a href="https://doc.rust-lang.org/stable/error_codes/error-index.html">Error Codes Index</a> - list of all error codes emitted from the Rust compiler </li>
<li><a href="https://doc.rust-lang.org/stable/error_codes/error-index.html">Error Codes Index</a> - list of all error codes emitted from the Rust compiler</li>
<li><a href="https://rust-lang.github.io/mdBook/">mdBook</a> - authoring, rendering and serving markdown books</li>
<li><a href="https://rust-lang.github.io/polonius/">Polonius</a> - experimental borrow checker crate</li>
<li><a href="https://rust-lang.github.io/api-guidelines/">Rust API Guidelines</a> - how to design and present APIs</li>
Expand Down
2 changes: 1 addition & 1 deletion searcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ window.search = window.search || {};

// Eventhandler for keyevents on `document`
function globalKeyHandler(e) {
if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea' || e.target.type === 'text') { return; }
if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea' || e.target.type === 'text' || !hasFocus() && /^(?:input|select|textarea)$/i.test(e.target.nodeName)) { return; }

if (e.keyCode === ESCAPE_KEYCODE) {
e.preventDefault();
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 93d3be4

Please sign in to comment.