From 4fbd86a02538274f579b21e7da3d5b05f493bb17 Mon Sep 17 00:00:00 2001 From: Olivier Labayle Date: Mon, 27 May 2024 13:45:47 +0100 Subject: [PATCH] maybe fix doc --- docs/src/user_guide/estimation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/user_guide/estimation.md b/docs/src/user_guide/estimation.md index 478237f..1caa4f6 100644 --- a/docs/src/user_guide/estimation.md +++ b/docs/src/user_guide/estimation.md @@ -269,7 +269,7 @@ Then we can formally test our hypothesis by leveraging the multivariate Central composed_result = compose((x, y, z) -> x - y - z, joint_estimate) isapprox( estimate(resultâ‚„), - estimate(composed_result), + first(estimate(composed_result)), atol=0.1 ) ```