summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorThéophile Choutri <theophile@choutri.eu>2018-01-18 11:02:25 +0100
committerGitHub <noreply@github.com>2018-01-18 11:02:25 +0100
commit4562ee549c7213567585f33e75b8598940b55b86 (patch)
tree848766537cfb21cfde5b200dcbf4c27ceae8337b /mix.exs
parentMerge pull request #74 from tchoutri/add-whois (diff)
Fix namespaces and improve internal consistency
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index 63f24a6..00a1cb2 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,4 +1,4 @@
-defmodule ExIrc.Mixfile do
+defmodule ExIRC.Mixfile do
use Mix.Project
def project do
@@ -14,7 +14,7 @@ defmodule ExIrc.Mixfile do
# Configuration for the OTP application
def application do
- [mod: {ExIrc.App, []},
+ [mod: {ExIRC.App, []},
applications: [:ssl, :crypto, :inets]]
end