diff --git a/docs/framework/quantities.rst b/docs/framework/quantities.rst index 18120cfa..38892581 100644 --- a/docs/framework/quantities.rst +++ b/docs/framework/quantities.rst @@ -38,17 +38,17 @@ type to ``double`` by default:: namespace si { template - using length = quantity; + using q_length = quantity; template - using speed = quantity; + using q_speed = quantity; } Thanks to that, the above example can be rewritten as follows:: - si::length d(123); - si::speed v(70); + si::q_length d(123); + si::q_speed v(70); Quantity References +++++++++++++++++++