From 02b0546772559fd68210365142b58d783bd656d5 Mon Sep 17 00:00:00 2001 From: Vincent Sisk Date: Tue, 20 Dec 2016 10:10:35 -0700 Subject: [PATCH] Update readme.md (#129) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index b398ca4..a56ec49 100644 --- a/readme.md +++ b/readme.md @@ -272,7 +272,7 @@ const predicate = (a) => a > 2 ## Contracts -A contract specifies the obligations and guarentees of the behavior from a function or expression at runtime. This acts as a set of rules that are expected from the input and output of a function or expression, and errors are generally reported whenever a contract is violated. +A contract specifies the obligations and guarantees of the behavior from a function or expression at runtime. This acts as a set of rules that are expected from the input and output of a function or expression, and errors are generally reported whenever a contract is violated. ```js // Define our contract : int -> int