From 8b2613da30b33d4a96628fa3a69e1e30669be6b0 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 17 Jun 2025 10:09:11 +0200 Subject: [PATCH] docs: type o point quantity fixed in the example of absolute quantities post --- docs/blog/posts/introducing-absolute-quantities.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/blog/posts/introducing-absolute-quantities.md b/docs/blog/posts/introducing-absolute-quantities.md index 4a6a136e..f9f66008 100644 --- a/docs/blog/posts/introducing-absolute-quantities.md +++ b/docs/blog/posts/introducing-absolute-quantities.md @@ -137,11 +137,11 @@ For example: ```cpp inline constexpr struct tare final : relative_point_origin {} tare; -quantity> m1(10 * kg); // point quantity with an implicit point origin -quantity> m2 = tare + 8 * kg; // point quantity with an explicit relative point origin -quantity        m3 = 15 * kg; // absolute quantity (e.g., non-negative) -quantity> m13 = m1 - m3; // delta quantity (e.g., may be negative) -quantity> m23 = m2 - m3; // delta quantity (e.g., may be negative) +quantity> m1(10 * kg); // point quantity with an implicit point origin +quantity> m2 = tare + 8 * kg; // point quantity with an explicit relative point origin +quantity         m3 = 15 * kg; // absolute quantity (e.g., non-negative) +quantity> m13 = m1 - m3; // delta quantity (e.g., may be negative) +quantity> m23 = m2 - m3; // delta quantity (e.g., may be negative) ``` With the above, the initial example may be refactored to: