Update snippet descriptions & tags

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-18 23:04:45 +03:00
parent 216c3ac77a
commit 2b6f2b1740
22 changed files with 47 additions and 38 deletions

View File

@ -5,7 +5,7 @@ tags: math,beginner
Converts Celsius to Fahrenheit.
- Follows the conversion formula `F = 1.8C + 32`.
- Follows the conversion formula `F = 1.8 * C + 32`.
```js
const celsiusToFahrenheit = degrees => 1.8 * degrees + 32;