From 2034f92d11ba4271103ac69083014b7135ee3516 Mon Sep 17 00:00:00 2001 From: Jordan Christiansen Date: Thu, 6 Feb 2020 11:38:51 -0600 Subject: [PATCH] README: Use degree sign instead of ordinal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit º is the masculine ordinal in Spanish. ° is the degree sign. They look different in some fonts. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd902fb..8399edc 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ func main() { for { temp, _ := sensor.ReadTemperature() - println("Temperature:", float32(temp)/1000, "ºC") + println("Temperature:", float32(temp)/1000, "°C") pressure, _ := sensor.ReadPressure() println("Pressure", float32(pressure)/100000, "hPa")