From c3e07593e77597034c129ce04ca606bd0b868c70 Mon Sep 17 00:00:00 2001 From: Gabriel Lopes Veiga Date: Wed, 7 Oct 2020 15:33:25 -0300 Subject: [PATCH] use the proper name for reflexivity in the readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d28132..acd4958 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ const eq = new Class({ name: 'Eq', laws: all( obey((x) => { - // we expect comparison to oneself to be true + // we expect equality to be reflexive return x.equals(x) }), ),