emacs: fix a typo

This commit is contained in:
Protesilaos Stavrou 2026-01-28 22:26:51 +02:00
parent d81db7ca3f
commit e9755f0104
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA
2 changed files with 4 additions and 4 deletions

View file

@ -12007,7 +12007,7 @@ floating points: 16.666666666666664 => 16.667."
(let* ((converted-degrees (/ (- degree 32) 1.8))
(f-string (number-to-string degree))
(c-string (number-to-string converted-degrees)))
(message "%s degrees Fahrenheit is %s degrees Celcius"
(message "%s degrees Fahrenheit is %s degrees Celsius"
(propertize f-string 'face 'error)
(propertize c-string 'face 'success))))
@ -12020,7 +12020,7 @@ floating points: 16.666666666666664 => 16.667."
(let* ((converted-degrees (+ (* degree 1.8) 32))
(c-string (number-to-string degree))
(f-string (number-to-string converted-degrees)))
(message "%s degrees Celcius is %s degrees Fahrenheit"
(message "%s degrees Celsius is %s degrees Fahrenheit"
(propertize c-string 'face 'success)
(propertize f-string 'face 'error))))

View file

@ -154,7 +154,7 @@ floating points: 16.666666666666664 => 16.667."
(let* ((converted-degrees (/ (- degree 32) 1.8))
(f-string (number-to-string degree))
(c-string (number-to-string converted-degrees)))
(message "%s degrees Fahrenheit is %s degrees Celcius"
(message "%s degrees Fahrenheit is %s degrees Celsius"
(propertize f-string 'face 'error)
(propertize c-string 'face 'success))))
@ -167,7 +167,7 @@ floating points: 16.666666666666664 => 16.667."
(let* ((converted-degrees (+ (* degree 1.8) 32))
(c-string (number-to-string degree))
(f-string (number-to-string converted-degrees)))
(message "%s degrees Celcius is %s degrees Fahrenheit"
(message "%s degrees Celsius is %s degrees Fahrenheit"
(propertize c-string 'face 'success)
(propertize f-string 'face 'error))))