From 856e42e4f5cdb310c902d480edc7ab51d7da51c8 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 30 Oct 2024 13:20:42 +0100 Subject: [PATCH] style: pre-commit --- docs/users_guide/framework_basics/quantity_arithmetics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/users_guide/framework_basics/quantity_arithmetics.md b/docs/users_guide/framework_basics/quantity_arithmetics.md index 4eabebe24..8f2fa6f3c 100644 --- a/docs/users_guide/framework_basics/quantity_arithmetics.md +++ b/docs/users_guide/framework_basics/quantity_arithmetics.md @@ -128,7 +128,7 @@ static_assert(isq::height(3 * m) * 0.5 == isq::height(1.5 * m)); Unless we use a compound assignment operator, in which case we always have to result with the type of the left-hand-side argument. This, together with the fact that this library tries to prevent truncation of a quantity value means, that the following does not compile: - + ```cpp quantity q = isq::height(3 * m) *= 0.5; // Compile-time error ```