[poincare/unit] Fix micro prefix symbol

This commit is contained in:
Ruben Dashyan
2020-01-29 15:26:24 +01:00
committed by Léa Saviot
parent 7cfdadd394
commit 3308427dd4

View File

@@ -151,7 +151,7 @@ public:
static constexpr const Prefix
PicoPrefix = Prefix("p", -12),
NanoPrefix = Prefix("n", -9),
MicroPrefix = Prefix("u", -6), // FIXME μ
MicroPrefix = Prefix("μ", -6),
MilliPrefix = Prefix("m", -3),
CentiPrefix = Prefix("c", -2),
DeciPrefix = Prefix("d", -1),