From 616760019b3b62fd8c8839ca91b2d47b00a86166 Mon Sep 17 00:00:00 2001 From: Mikael Ilmanen Date: Sun, 15 Nov 2015 14:30:46 +0200 Subject: [PATCH] Add missing \mu abbreviations --- src/shortunits.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/shortunits.jl b/src/shortunits.jl index bdc4b46..dbe196e 100644 --- a/src/shortunits.jl +++ b/src/shortunits.jl @@ -105,11 +105,13 @@ module ShortUnits # Support the other unicode codepoint for $\mu$ # (namely the one we get on the REPL) - export μg, μm, μF, μA, μW + export μg, μm, μF, μA, μW, μs, μΩ const μg = µg const μm = µm const μF = µF const μA = µA const μW = µW + const μs = µs + const μΩ = µΩ end