From af21054d7c8ad89b23a3e0c996d924953b4d84c8 Mon Sep 17 00:00:00 2001 From: Boomkop3 Date: Thu, 26 Sep 2024 15:26:39 +0200 Subject: [PATCH] fix: rounding error (#33721) --- aspnetcore/blazor/fundamentals/startup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/fundamentals/startup.md b/aspnetcore/blazor/fundamentals/startup.md index 513f30eea0..9bd26ad8af 100644 --- a/aspnetcore/blazor/fundamentals/startup.md +++ b/aspnetcore/blazor/fundamentals/startup.md @@ -619,7 +619,7 @@ The following demonstration uses the loading progress indicator found in apps cr .loading-progress circle:last-child { stroke: #1b6ec2; stroke-dasharray: - calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), + calc(3.142 * var(--blazor-load-percentage, 0%) * 0.8), 500%; transition: stroke-dasharray 0.05s ease-in-out; }