hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit e7652180a13ce149041c48a1c2754c471df569c8
parent 7989210120dbde78da3741e2ef01b13f4aa78692
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Tue, 28 Nov 2017 21:16:01 +0100

vendor: Fix Humanize for multi-byte runes

Fixes #4133

Diffstat:
MGopkg.lock | 2+-
Mtpl/inflect/inflect_test.go | 1+
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/Gopkg.lock b/Gopkg.lock
@@ -147,7 +147,7 @@
   branch = "master"
   name = "github.com/markbates/inflect"
   packages = ["."]
-  revision = "ea17041f342f81e8849284b87bc3db1a6fc596bb"
+  revision = "54ffb37507cd7d2ccd4768855e84f9ff6c4352b6"
 
 [[projects]]
   name = "github.com/miekg/mmark"
diff --git a/tpl/inflect/inflect_test.go b/tpl/inflect/inflect_test.go
@@ -19,6 +19,7 @@ func TestInflect(t *testing.T) {
 		expect interface{}
 	}{
 		{ns.Humanize, "MyCamel", "My camel"},
+		{ns.Humanize, "óbito", "Óbito"},
 		{ns.Humanize, "", ""},
 		{ns.Humanize, "103", "103rd"},
 		{ns.Humanize, "41", "41st"},