From 1b4c1f91346f527b781f21f6b7659e4238796c93 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 17 Jun 2025 16:21:53 +0200 Subject: [PATCH] docs: fix formatting in introducing absolute quantities post --- docs/blog/posts/introducing-absolute-quantities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/blog/posts/introducing-absolute-quantities.md b/docs/blog/posts/introducing-absolute-quantities.md index 7b2feff7..aac9bde0 100644 --- a/docs/blog/posts/introducing-absolute-quantities.md +++ b/docs/blog/posts/introducing-absolute-quantities.md @@ -205,7 +205,7 @@ may be obtained by subtracting a delta from absolute quantity or absolute quanti ```cpp quantity temp1 = 270 * K; - quantity temp2 = point(300); + quantity temp2 = point(300); quantity temp3 = temp2 - temp1; // Point // quantity temp4 = temp1 - temp2; // Compile-time error quantity temp5 = temp1 - temp2.absolute(); // Delta