From 037915827ba31ef39ccbb79612d2e6a4d4ac8817 Mon Sep 17 00:00:00 2001 From: Jonas Trollvik Date: Fri, 27 Jul 2018 10:10:11 +0200 Subject: [PATCH] Fix incorrect url --- crates/js-sys/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/js-sys/src/lib.rs b/crates/js-sys/src/lib.rs index 02a566a6..7ea744ed 100644 --- a/crates/js-sys/src/lib.rs +++ b/crates/js-sys/src/lib.rs @@ -1209,7 +1209,7 @@ extern "C" { /// The Math.hypot() function returns the square root of the sum of squares of its arguments. /// - /// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/fround + /// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/hypot #[wasm_bindgen(static_method_of = Math)] pub fn hypot(x: f64, y: f64) -> f64;