diff --git a/functions/celsius_to_kelvin.R b/functions/celsius_to_kelvin.R index 10a4c6e..e65a656 100644 --- a/functions/celsius_to_kelvin.R +++ b/functions/celsius_to_kelvin.R @@ -6,5 +6,6 @@ celsius_to_kelvin <- function(temp_C) { #' #' The equation for conversion is : T_K = TC + 273 #' - return (temp_C) -} \ No newline at end of file + temp_K <- temp_C + 273 + return (temp_K) +}