summaryrefslogtreecommitdiff
path: root/lib/irc/client
diff options
context:
space:
mode:
authorhref <href@random.sh>2021-01-09 14:38:05 +0100
committerhref <href@random.sh>2021-01-09 14:38:05 +0100
commitc77be7ec8fbbbd2b871efa3822be3b25edeb445d (patch)
tree5f1fd8ba0b02e2ae37bbf8a7c28b1808999a7594 /lib/irc/client
parent (diff)
Old WIP commit - STS, ...
Diffstat (limited to 'lib/irc/client')
-rw-r--r--lib/irc/client/command/away.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irc/client/command/away.ex b/lib/irc/client/command/away.ex
index 3b6b38e..da8b5ef 100644
--- a/lib/irc/client/command/away.ex
+++ b/lib/irc/client/command/away.ex
@@ -15,7 +15,7 @@ defmodule Irc.Client.Command.Away do
{:send, command}
end
- def hanle_line(%Line{command: "AWAY", source: source, args: args}, _) do
+ def handle_line(%Line{command: "AWAY", source: source, args: args}, _) do
case args do
[] -> {:event, {:away, source}}
[message] -> {:event, {:away, {source, message}}}