From fd4d4cbdf355d18125828f3cdcf7e3be3731657f Mon Sep 17 00:00:00 2001 From: z82n Date: Sun, 22 Nov 2020 00:32:51 +0000 Subject: [PATCH] updated mix.exs in intro to mix --- getting-started/mix-otp/introduction-to-mix.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/mix-otp/introduction-to-mix.markdown b/getting-started/mix-otp/introduction-to-mix.markdown index 246e7f8a6..d28a28e03 100644 --- a/getting-started/mix-otp/introduction-to-mix.markdown +++ b/getting-started/mix-otp/introduction-to-mix.markdown @@ -90,8 +90,8 @@ defmodule KV.MixProject do [ app: :kv, version: "0.1.0", - elixir: "~> 1.9", - start_permanent: Mix.env == :prod, + elixir: "~> 1.11", + start_permanent: Mix.env() == :prod, deps: deps() ] end