From e88cdadd5f11f081d0983cb40aa4d5ce77e10939 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Fri, 16 Apr 2021 14:46:58 +0200 Subject: [PATCH] docs: "Dimension-Specific Aliases" fixed --- docs/framework/quantities.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/framework/quantities.rst b/docs/framework/quantities.rst index cc6dea2f..2bad4158 100644 --- a/docs/framework/quantities.rst +++ b/docs/framework/quantities.rst @@ -38,17 +38,17 @@ type to ``double`` by default:: namespace si { template - using q_length = quantity; + using length = quantity; template - using q_speed = quantity; + using speed = quantity; } Thanks to that, the above example can be rewritten as follows:: - si::q_length d(123); - si::q_speed v(70); + si::length d(123); + si::speed v(70); Quantity References +++++++++++++++++++