diff --git a/README.md b/README.md index bb640e6..0b7aac3 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,10 @@ Feedback, questions or discussion is welcome in the issue tracker. **2020-04-06:** Final draft finished +**2020-04-10:** Rather substantial rewrite of the `Reactor` to better the +readability and make it easier to reason about. In addition I fixed a mistake +in the `Poll` method and a possible race condition. See #2 for more details. + ## License This book is MIT licensed. diff --git a/book/0_background_information.html b/book/0_background_information.html index 1bd86bb..051deaf 100644 --- a/book/0_background_information.html +++ b/book/0_background_information.html @@ -1,5 +1,5 @@ - +
@@ -32,11 +32,11 @@ - + @@ -60,11 +60,8 @@ var theme; try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } if (theme === null || theme === undefined) { theme = default_theme; } - var html = document.querySelector('html'); - html.classList.remove('no-js') - html.classList.remove('light') - html.classList.add(theme); - html.classList.add('js'); + document.body.className = theme; + document.querySelector('html').className = theme + ' js'; @@ -80,8 +77,8 @@