From 6d9abe97e517da36dd986a34a393bb4ee0b5439a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Thu, 18 Mar 2021 14:21:37 -0400 Subject: [PATCH] docs: rephrase 'unit constant' to 'quantity reference' --- src/core/include/units/reference.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/include/units/reference.h b/src/core/include/units/reference.h index b8fc2ee9..eead99e1 100644 --- a/src/core/include/units/reference.h +++ b/src/core/include/units/reference.h @@ -53,9 +53,9 @@ using reference_divide = detail::reference_divide_impl< typename R1::dimension, typename R1::unit, typename R2::dimension, typename R2::unit>; /** - * @brief The type for unit constants + * @brief The type for quantity references * - * This type is intended to be used in the unit constants definition: + * This type is intended to be used in the quantity references definition: * * @code{.cpp} * namespace references { @@ -66,7 +66,7 @@ using reference_divide = detail::reference_divide_impl< * } * @endcode * - * Unit constants simplify quantity creation: + * Quantity references simplify quantity creation: * * @code{.cpp} * using namespace units::isq::si::references; @@ -75,7 +75,7 @@ using reference_divide = detail::reference_divide_impl< * auto v = 70 * km / h; * @endcode * - * Also, it is allowed to define custom unit constants from existing ones: + * Also, it is allowed to define custom quantity references from existing ones: * * @code{.cpp} * constexpr auto Nm = N * m;