From 10738b8c062d53d05ca9b3c17ddd6d3469a8a038 Mon Sep 17 00:00:00 2001 From: Dave Russell Date: Sun, 4 Mar 2018 00:53:45 +0000 Subject: [PATCH] Fix time_and_date.rb date example. Issue #45 --- examples/time_and_date.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/time_and_date.rb b/examples/time_and_date.rb index 4e4758e..a0de1c0 100755 --- a/examples/time_and_date.rb +++ b/examples/time_and_date.rb @@ -6,7 +6,7 @@ @man = Barr::Manager.new time = Barr::Blocks::Clock.new format: '%H:%M', icon: "\uf017", bgcolor: '#114152', fgcolor: '#DAC1DE', align: :l -date = Barr::Blocks::Clock.new format: '%m of %b %Y', bgcolor: '#570B7A', fgcolor: '#FFFFFF', align: :r, icon: "\uf073" +date = Barr::Blocks::Clock.new format: '%d of %b %Y', bgcolor: '#570B7A', fgcolor: '#FFFFFF', align: :r, icon: "\uf073" @man.add time @man.add date