From e94742d58c5fd20bae760673e05cc3686ca1c174 Mon Sep 17 00:00:00 2001 From: Asartea <76259120+Asartea@users.noreply.github.com> Date: Sat, 12 Nov 2022 21:11:40 +0100 Subject: [PATCH] Missed another README.md reference --- tempConversion/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tempConversion/README.md b/tempConversion/README.md index 451535d..77682f6 100644 --- a/tempConversion/README.md +++ b/tempConversion/README.md @@ -7,7 +7,7 @@ convertToCelsius(32) // fahrenheit to celsius, should return 0 convertToFahrenheit(0) // celsius to fahrenheit, should return 32 ``` -Because we are human, we want the result temperature to be rounded to one decimal place: i.e., `ftoc(100)` should return `37.8` and not `37.77777777777778`. +Because we are human, we want the result temperature to be rounded to one decimal place: i.e., `convertToCelsius(100)` should return `37.8` and not `37.77777777777778`. This exercise asks you to create more than one function so the `module.exports` section of the spec file looks a little different this time. Nothing to worry about, we're just packaging both functions into a single object to be exported.