From 5c559cf15a2bacb2f4b14e892004f1c9d10e40d4 Mon Sep 17 00:00:00 2001 From: Cody Loyd Date: Fri, 25 Aug 2017 10:29:32 -0500 Subject: [PATCH] update temp conversion readme --- 06-tempConversion/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/06-tempConversion/README.md b/06-tempConversion/README.md index e728e42..334b302 100644 --- a/06-tempConversion/README.md +++ b/06-tempConversion/README.md @@ -2,4 +2,11 @@ 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 the functions into an object to be exported. +Write two functions that convert temperatures from Fahrenheit to Celsius (and the other way around): +``` +ftoc(32) // fahrenheit to celsius, should return 0 + +ctof(0) // celsius to fahrenheit, should return 32 +``` +