From c768818b8385b26df6e6cab818a99e133dc2a186 Mon Sep 17 00:00:00 2001 From: TorbenKoehn Date: Thu, 10 May 2018 02:07:55 +0200 Subject: [PATCH] - Updated README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 54efaa2..1b5ff55 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ $inflector->inflect('ProductAttribute', ['tableize', 'pluralize']); //product_at $inflector->inflect('someProperty', ['tableize']); //some_property //Canonicalization / slugs -$inflector->inflect('Some title I inserted', ['canonicalize']); //some-title-i-inserter +$inflector->inflect('Some title I inserted', ['canonicalize']); //some-title-i-inserted $inflector->inflect('Was höre ich da?', ['canonicalize']); //was-hore-ich-da //Or just use the static methods for quick access