Fix broken link in minElement doc

This commit is contained in:
Geod24 2020-11-28 19:13:11 +01:00 committed by The Dlang Bot
parent b3978d0a2f
commit b6a9cd8c64

View file

@ -3577,7 +3577,7 @@ Note:
---
If you want to get NaN as a result if a NaN is present in the range,
you can use $(REF fold, std.algorithm,iteration) and $(REF isNaN, std,math):
you can use $(REF fold, std,algorithm,iteration) and $(REF isNaN, std,math):
---
<range>.fold!((a,b)=>a.isNaN || b.isNaN ? real.nan : a < b ? a : b);