From 546566a7f8fa4698201ebcb9cf8bed484069b060 Mon Sep 17 00:00:00 2001 From: Jonathan Reinink Date: Tue, 31 Oct 2017 14:41:38 -0400 Subject: [PATCH] Improve name of colors in utility list --- docs/source/docs/text-color.blade.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/docs/text-color.blade.md b/docs/source/docs/text-color.blade.md index a6500e05e..30ce965ce 100644 --- a/docs/source/docs/text-color.blade.md +++ b/docs/source/docs/text-color.blade.md @@ -27,11 +27,11 @@ title: "Text Color" @foreach ($page->config['colors'] as $name => $value) - - .text-{{ $name }} - color: {{ $value }}; - Set the text color of an element to {{ str_replace('-', ' ' , $name) }}. - + + .text-{{ $name }} + color: {{ $value }}; + Set the text color of an element to {{ implode(' ', array_reverse(explode('-', $name))) }}. + @endforeach