From e6d409378365ad587e1331caefab3a6ac6772082 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Wed, 29 Jan 2020 06:53:06 +0100 Subject: [PATCH] Add more principles. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e96f60..2351282 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ function sum(a: number, b: number): ?number { return a + b; } -// This one should fails during the transpilation/compilation. +// This one should fail during the transpilation/compilation. const guessWhat = sum([], {}); // -> undefined ```