We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31fa161 commit 6a93543Copy full SHA for 6a93543
doc/Language/testing.pod6
@@ -281,8 +281,8 @@ are approximately equal to each other. The subroutine can be called in numerous
281
ways that let you test using relative tolerance (C<$rel-tol>) or
282
absolute tolerance (C<$abs-tol>) of different values.
283
284
-If no tolerance is set, the function will base the tolerance on the value of
285
-C<$expected>: if it's smaller than C<1e-6>, use absolute tolerance of C<1e-5>;
+If no tolerance is set, the function will base the tolerance on the I<absolute>
+value of C<$expected>: if it's smaller than C<1e-6>, use absolute tolerance of C<1e-5>;
286
if it's larger, use relative tolerance of C<1e-6>.
287
288
my Numeric ($value, $expected, $abs-tol, $rel-tol) = ...
0 commit comments