Skip to content

Commit

Permalink
Fix a doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwinchester committed Mar 8, 2022
1 parent 97d1433 commit 668e67f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions lib/tmi.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
defmodule TMI do
@moduledoc """
Define a Handler behaviour and default implementations.
"""
@moduledoc false

@doc false
defmacro __using__(_) do
Expand Down Expand Up @@ -169,9 +167,8 @@ defmodule TMI do
end
end

@doc """
Convert the ExIRC message to bot message.
"""
# Convert the ExIRC message to bot message.
@doc false
def apply_incoming_to_bot({:connected, server, port}, bot) do
apply(bot, :handle_connected, [server, port])
end
Expand Down
2 changes: 1 addition & 1 deletion lib/tmi/channel_server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ defmodule TMI.ChannelServer do
end

@doc """
Add a channel to the PART queue.
PART from a channel.
"""
@spec part(module(), String.t()) :: :ok
def part(bot, channel) do
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ defmodule TMI.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:exirc, github: "ryanwinchester/exirc", branch: "feature/static-analysis-and-formatter"},
{:exirc, "~> 2.0"},
{:ex_doc, "~> 0.28", only: :dev, runtime: false}
]
end
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%{
"earmark_parser": {:hex, :earmark_parser, "1.4.20", "89970db71b11b6b89759ce16807e857df154f8df3e807b2920a8c39834a9e5cf", [:mix], [], "hexpm", "1eb0d2dabeeeff200e0d17dc3048a6045aab271f73ebb82e416464832eb57bdd"},
"ex_doc": {:hex, :ex_doc, "0.28.2", "e031c7d1a9fc40959da7bf89e2dc269ddc5de631f9bd0e326cbddf7d8085a9da", [:mix], [{:earmark_parser, "~> 1.4.19", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "51ee866993ffbd0e41c084a7677c570d0fc50cb85c6b5e76f8d936d9587fa719"},
"exirc": {:git, "https://github.com/ryanwinchester/exirc.git", "b70444e96406108aba75da260c088ff6d36ed0c2", [branch: "feature/static-analysis-and-formatter"]},
"exirc": {:hex, :exirc, "2.0.0", "6b3b8da6d56096a2a613f3688ef05ed52d235a95566e889e885409c307b218b6", [:mix], [], "hexpm", "aba949c7e60ce4bbf1954d78ede33825ffe2fa01e840edd843ddc8f3775e7390"},
"makeup": {:hex, :makeup, "1.1.0", "6b67c8bc2882a6b6a445859952a602afc1a41c2e08379ca057c0f525366fc3ca", [:mix], [{:nimble_parsec, "~> 1.2.2 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "0a45ed501f4a8897f580eabf99a2e5234ea3e75a4373c8a52824f6e873be57a6"},
"makeup_elixir": {:hex, :makeup_elixir, "0.15.2", "dc72dfe17eb240552857465cc00cce390960d9a0c055c4ccd38b70629227e97c", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.1", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "fd23ae48d09b32eff49d4ced2b43c9f086d402ee4fd4fcb2d7fad97fa8823e75"},
"makeup_erlang": {:hex, :makeup_erlang, "0.1.1", "3fcb7f09eb9d98dc4d208f49cc955a34218fc41ff6b84df7c75b3e6e533cc65f", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "174d0809e98a4ef0b3309256cbf97101c6ec01c4ab0b23e926a9e17df2077cbb"},
Expand Down

0 comments on commit 668e67f

Please sign in to comment.