File tree 1 file changed +2
-2
lines changed
crates/core_arch/src/wasm32
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ pub fn f32_nearest(a: f32) -> f32 {
94
94
/// This method is useful when targeting `no_std` and is equivalent to [`std::f32::sqrt()`].
95
95
///
96
96
/// [`std::f32::sqrt()`]: https://doc.rust-lang.org/std/primitive.f32.html#method.sqrt
97
- /// [`f32.nearest `]: https://webassembly.github.io/spec/core/syntax/instructions.html#syntax-instr-numeric
97
+ /// [`f32.sqrt `]: https://webassembly.github.io/spec/core/syntax/instructions.html#syntax-instr-numeric
98
98
#[ cfg_attr( test, assert_instr( f32 . sqrt) ) ]
99
99
#[ inline]
100
100
#[ must_use = "method returns a new number and does not mutate the original value" ]
@@ -165,7 +165,7 @@ pub fn f64_nearest(a: f64) -> f64 {
165
165
/// This method is useful when targeting `no_std` and is equivalent to [`std::f64::sqrt()`].
166
166
///
167
167
/// [`std::f64::sqrt()`]: https://doc.rust-lang.org/std/primitive.f64.html#method.sqrt
168
- /// [`f64.nearest `]: https://webassembly.github.io/spec/core/syntax/instructions.html#syntax-instr-numeric
168
+ /// [`f64.sqrt `]: https://webassembly.github.io/spec/core/syntax/instructions.html#syntax-instr-numeric
169
169
#[ cfg_attr( test, assert_instr( f64 . sqrt) ) ]
170
170
#[ inline]
171
171
#[ must_use = "method returns a new number and does not mutate the original value" ]
You can’t perform that action at this time.
0 commit comments