mirror of
https://github.com/protesilaos/dotfiles.git
synced 2026-09-10 07:16:20 -04:00
emacs: fix a typo
This commit is contained in:
parent
d81db7ca3f
commit
e9755f0104
|
|
@ -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))))
|
||||
|
||||
|
|
|
|||
|
|
@ -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))))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue