From 0edabfdbd0252b989c17958b9a14c58bad6c5b5b Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 28 Jun 2016 15:53:55 -0500 Subject: [PATCH] Clean up the iex code block --- elixir/create-a-date-with-the-date-sigil.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/elixir/create-a-date-with-the-date-sigil.md b/elixir/create-a-date-with-the-date-sigil.md index ed6827b..719dc76 100644 --- a/elixir/create-a-date-with-the-date-sigil.md +++ b/elixir/create-a-date-with-the-date-sigil.md @@ -8,10 +8,10 @@ function producing the Date struct with each of the date parts. ```elixir > ~D[2016-01-01] ~D[2016-01-01] -iex(7)> ~D[2016-01-01].year +> ~D[2016-01-01].year 2016 -iex(8)> ~D[2016-01-01].month +> ~D[2016-01-01].month 1 -iex(9)> ~D[2016-01-01].day +> ~D[2016-01-01].day 1 ```