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 +++++++++++++++++++