diff --git a/readme.md b/readme.md index 6b8ccde30..afc6832a8 100644 --- a/readme.md +++ b/readme.md @@ -311,7 +311,7 @@ TimeSpan.FromMilliseconds(5).Humanize() => "5 milisekúnd" ###Humanize Collections -You can call `Humanize` on any `IEnumerable` to get a nicely formatted string representing the objects in the collection. By default `ToString()` will be called on each item to get its representation but a formatting function may be passed to `Humanize` instead. Additionally, a default separator is provided("and" in English), but a different separator may be passed into `Humainze`. +You can call `Humanize` on any `IEnumerable` to get a nicely formatted string representing the objects in the collection. By default `ToString()` will be called on each item to get its representation but a formatting function may be passed to `Humanize` instead. Additionally, a default separator is provided("and" in English), but a different separator may be passed into `Humanize`. For instance: