From bfdd61bf597eb5bdbe3ce43941145c27de5c2446 Mon Sep 17 00:00:00 2001 From: Raimon Grau Date: Sat, 5 Jul 2014 20:01:38 +0200 Subject: [PATCH] typofix --- one-function-to-rule-them-all.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/one-function-to-rule-them-all.markdown b/one-function-to-rule-them-all.markdown index 7fa6490..93c2dc0 100644 --- a/one-function-to-rule-them-all.markdown +++ b/one-function-to-rule-them-all.markdown @@ -390,8 +390,8 @@ given to the function. This function can be called with one or two parameters. Write the function `minus` that takes one or two parameters. -- If given a one parameter $x$, it returns $-x$. -- If given to parameters $x$ and $y$, it returns $x - y$. +- If given one parameter $x$, it returns $-x$. +- If given two parameters $x$ and $y$, it returns $x - y$. ~~~clojure (minus 2) ;=> -2