From 4d62cfe805abf1bfb6b184a78f46673d20cf6666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Allonneau?= Date: Tue, 3 Dec 2019 23:06:23 +0100 Subject: [PATCH] Fixed "Custom human" example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37ca209..23f4c22 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ inflect.singularize('guys'); // === 'person' ```js inflect.inflections.human(/^(.*)_cnt$/i, '$1_count'); -inflect.inflections.humanize('jargon_cnt'); // === 'Jargon count' +inflect.humanize('jargon_cnt'); // === 'Jargon count' ``` ### Custom uncountable