@@ -1367,6 +1367,8 @@ impl f128 {
13671367 }
13681368
13691369 /// Float addition that allows optimizations based on algebraic rules.
1370+ ///
1371+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
13701372 #[ must_use = "method returns a new number and does not mutate the original value" ]
13711373 #[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
13721374 #[ inline]
@@ -1375,6 +1377,8 @@ impl f128 {
13751377 }
13761378
13771379 /// Float subtraction that allows optimizations based on algebraic rules.
1380+ ///
1381+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
13781382 #[ must_use = "method returns a new number and does not mutate the original value" ]
13791383 #[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
13801384 #[ inline]
@@ -1383,6 +1387,8 @@ impl f128 {
13831387 }
13841388
13851389 /// Float multiplication that allows optimizations based on algebraic rules.
1390+ ///
1391+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
13861392 #[ must_use = "method returns a new number and does not mutate the original value" ]
13871393 #[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
13881394 #[ inline]
@@ -1391,6 +1397,8 @@ impl f128 {
13911397 }
13921398
13931399 /// Float division that allows optimizations based on algebraic rules.
1400+ ///
1401+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
13941402 #[ must_use = "method returns a new number and does not mutate the original value" ]
13951403 #[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
13961404 #[ inline]
@@ -1399,6 +1407,8 @@ impl f128 {
13991407 }
14001408
14011409 /// Float remainder that allows optimizations based on algebraic rules.
1410+ ///
1411+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
14021412 #[ must_use = "method returns a new number and does not mutate the original value" ]
14031413 #[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
14041414 #[ inline]
0 commit comments