From e9e54938d4f98ade594897d5aa3b9acdea299e76 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sat, 28 Mar 2020 12:51:17 +0100 Subject: [PATCH] =?UTF-8?q?Unit=20symbols=20with=20`=E2=8B=85`=20symbol=20?= =?UTF-8?q?updated=20in=20the=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/framework/units.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/framework/units.rst b/docs/framework/units.rst index 242933ea..ee42aa64 100644 --- a/docs/framework/units.rst +++ b/docs/framework/units.rst @@ -122,15 +122,15 @@ will result in a different unnamed unit symbol: struct dim_momentum : derived_dimension, exp, - exp> {}; // kg⋅m/s + exp> {}; // kg ⋅ m/s struct dim_momentum : derived_dimension, exp, - exp> {}; // m⋅kg/s + exp> {}; // m ⋅ kg/s struct dim_momentum : derived_dimension, exp, - exp> {}; // 1/s⋅m⋅kg + exp> {}; // 1/s ⋅ m ⋅ kg where ``kilogram_metre_per_second`` is defined as:: @@ -144,7 +144,7 @@ However, the easiest way to define momentum is just to use the struct dim_momentum : derived_dimension, - exp> {}; // kg⋅m/s + exp> {}; // kg ⋅ m/s In such a case the library will do its magic and will automatically unpack a provided derived dimension to its base dimensions in order to