diff --git a/JavaScript/Functions.js b/JavaScript/Functions.js index d6d831b..c9c79c8 100644 --- a/JavaScript/Functions.js +++ b/JavaScript/Functions.js @@ -1,5 +1,5 @@ // A function that returns the smallest argument -function returnSmallest(a, b) { +function returnSmallestValue(a, b) { if(a>b) { return b } else { @@ -7,4 +7,4 @@ function returnSmallest(a, b) { } } -// Add your functions below this line :) ------------------------------------ \ No newline at end of file +// Add your functions below this line :) ------------------------------------