cargo +nightly fmt --all

Rustfmt all the things!
This commit is contained in:
Alex Crichton
2018-09-26 08:26:00 -07:00
parent a3e160744e
commit 7ecf4aae87
163 changed files with 2975 additions and 1998 deletions

View File

@ -21,7 +21,9 @@ macro_rules! console_log {
#[wasm_bindgen]
pub fn run() {
let window = web_sys::window().expect("should have a window in this context");
let performance = window.performance().expect("performance should be available");
let performance = window
.performance()
.expect("performance should be available");
console_log!("the current time (in ms) is {}", performance.now());