From b1725efe525418a3024388dd1eaba62f336919b3 Mon Sep 17 00:00:00 2001 From: Eric Ihli Date: Tue, 16 Jun 2020 11:54:54 -0700 Subject: [PATCH 1/2] Fix typo in README The "VBP" example was repeated twice. Looks like the second is supposed to be a gerund example, "VBG" --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a4c47c4..c469f2e 100644 --- a/readme.md +++ b/readme.md @@ -46,7 +46,7 @@ new Inflectors("rallied").conjugate("VBP"); // rally new Inflectors("fly").conjugate("VBD"); // flew new Inflectors("throw").conjugate("VBN"); // thrown new Inflectors("rally").conjugate("VBS"); // rallies -new Inflectors("die").conjugate("VBP"); // dying +new Inflectors("die").conjugate("VBG"); // dying // or you can use the aliases new Inflectors("rallied").toPresent(); // rally From 07cc5b36c9586b88950939eecae7c8a59e989ef7 Mon Sep 17 00:00:00 2001 From: Eric Ihli Date: Tue, 16 Jun 2020 12:05:23 -0700 Subject: [PATCH 2/2] Fix typo in readme - conjugate VBS -> VBZ Looks liks the abbreviations follow https://en.wikipedia.org/wiki/Brown_Corpus and "VBS" isn't on there. Tested "VBZ" and got the expected output of "rallies". --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index c469f2e..29384ed 100644 --- a/readme.md +++ b/readme.md @@ -45,7 +45,7 @@ instance.superlative(); // biggest new Inflectors("rallied").conjugate("VBP"); // rally new Inflectors("fly").conjugate("VBD"); // flew new Inflectors("throw").conjugate("VBN"); // thrown -new Inflectors("rally").conjugate("VBS"); // rallies +new Inflectors("rally").conjugate("VBZ"); // rallies new Inflectors("die").conjugate("VBG"); // dying // or you can use the aliases