refactor: Unicode symbols description reworked based on the latest SG16 recommendations

This commit is contained in:
Mateusz Pusz
2024-10-28 16:03:09 +01:00
parent c72d801ef8
commit 4651c61be4
3 changed files with 18 additions and 17 deletions

View File

@@ -196,7 +196,7 @@ For some units, a magnitude might also be irrational. The best example here is a
is defined using a floating-point magnitude having a factor of the number π (Pi):
```cpp
inline constexpr struct pi final : mag_constant<symbol_text{u8"\u03c0", "pi"}, std::numbers::pi_v<long double>> {} pi;
inline constexpr struct pi final : mag_constant<symbol_text{u8"π", "pi"}, std::numbers::pi_v<long double>> {
inline constexpr auto π = pi;
```