diff --git a/Unwrap/Content/SixtySeconds/returning-closures-from-functions.html b/Unwrap/Content/SixtySeconds/returning-closures-from-functions.html index e993062..4970c0c 100644 --- a/Unwrap/Content/SixtySeconds/returning-closures-from-functions.html +++ b/Unwrap/Content/SixtySeconds/returning-closures-from-functions.html @@ -25,7 +25,7 @@
It’s technically allowable – although really not recommended! – to call the return value from travel() directly:
-let result2 = travel()("London")
+travel()("London")